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 »