Jar examples for d:disruptor
LMAX aims to be the fastest trading platform in the world. Clearly, in order to achieve this we needed to do something special to achieve very low-latency and high-throughput with our Java platform. Performance testing showed that using queues to pass data between stages of the system was introducing latency, so we focused on optimising this area. The Disruptor is the result of our research and testing. We found that cache misses at the CPU-level, and locks requiring kernel arbitration are both extremely costly, so we created a framework which has "mechanical sympathy" for the hardware it's running on, and that's lock-free.
You can download jar file disruptor 3.0.1 in this page.
The Apache Software License, Version 2.0
You can use the following script to add disruptor-3.0.1.jar to your project.
<dependency> <groupId>com.lmax</groupId> <artifactId>disruptor</artifactId> <version>3.0.1</version> </dependency>
compile group: 'com.lmax', name: 'disruptor', version: '3.0.1'
libraryDependencies += "com.lmax" % "disruptor" % "3.0.1"
<dependency org="com.lmax" name="disruptor" rev="3.0.1"/>
@Grapes(@Grab(group='com.lmax', module='disruptor', version='3.0.1'))
'com.lmax:disruptor:jar:3.0.1'
Click the following link to download the jar file.
disruptor-3.0.1-javadoc.jar