Why my Disruptor program don't take full advantage of the ringbuffer
问题 Disruptor github address is: https://github.com/LMAX-Exchange/disruptor I've a simple test for it as below: public class DisruptorMain { @SuppressWarnings({ "rawtypes", "unchecked" }) public static void main(String[] args) throws Exception { class Element { private int value; public int get() { return value; } public void set(int value) { this.value = value; } } ThreadFactory threadFactory = new ThreadFactory() { @Override public Thread newThread(Runnable r) { return new Thread(r,