AnjLab Blog
В этом разделе транслируются сообщения, которые участники команды размещают на своих персональных блогах.
Simple Sorting Facade for Java (SSF4J)
Say, you have list of names and corresponding list of weights. There is no API that allows you to sort names by weights (at least not that I know). However this is very common use case, especially when you analyzing data in your programs.
To achieve this, you, most likely, implement one of the sorting algorithms with a custom swap-logic.
Simple sorting facade is a pattern that already contains implementation of sorting algorithm(s) and only requires developers to specify source list, its bounds, and compare- and the swap-logic.
You can explore SSF4J on GitHub and contribute your implementations of sorting algorithms.
Here's an example of using SSF4J:
Read more [Dmitry Gusev Blog]
AnjLab Sql Profiler with Application Performance Dashboard is out!
New version of AnjLab SQL Profiler 1.2 is out. The main feature of the release is Application Performance Dashboard. Using this feature you can profile your database server queries grouped by application.
Read more [Nikolay Zhebrun Blog]
