Saturday, June 22, 2013

Configuration trash

Just create this entry to keep various configurations in a central place. I am going to update it in the future - when it is necessary.

Saturday, June 8, 2013

Async logging performance with log4j

We do it all the time:
log.debug("Log me");
This particular line does three things:
1. Saves the message to some storage,
2. Obfuscates the business logic,
3. Slows the execution down.
However, there are moments when the performance is crucial. Can async logging help us in that matter?