What is a “Domain”?

1 June 2014 | 0
As a not-native english speaker, I sometimes bump into topics that conceptually are rather easy, but in fact much harder (for me) to grasp than they ought to be, because for a native english speaker they are probably self-explanatory, and ... Read more »

Performance Optimization

27 April 2014 | 0
This weekend, I did some performance testing with ConcurrentLinkedQueue. Then, based on work requirements, I programmed a concurrent primitive array of fixed size, more or less like this: package com.marcusbiel.javacourse; import java.util.concurrent.atomic.AtomicInteger; public class ConcurrentArray { private static final int ... Read more »