构建高性能内存队列:Disruptor yyds~
Java中有哪些队列ArrayBlockingQueue使用ReentrantLockLinkedBlockingQueue使用ReentrantLockConcurrentLinkedQueue使用CAS等等我们清楚使用锁的性能比较低,尽量使用无锁设计。接下来就我们来认识下Disruptor。Disruptor简单使用github地址:https:github.comLMAXExchangedisruptorwikiPerformanceResults先简单介绍下:Disruptor它是一个开源的并发框架,并获得2011Duke’s程序框架创新奖【Oracle】...