Download disruptor-3.3.6.jar file - Jar d

Jar examples for d:disruptor

Description

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.3.6 in this page.

License

The Apache Software License, Version 2.0

Build File

You can use the following script to add disruptor-3.3.6.jar to your project.

<dependency>
   <groupId>com.lmax</groupId>
   <artifactId>disruptor</artifactId>
   <version>3.3.6</version>
</dependency>
compile group: 'com.lmax', name: 'disruptor', version: '3.3.6'
libraryDependencies += "com.lmax" % "disruptor" % "3.3.6"
<dependency org="com.lmax" name="disruptor" rev="3.3.6"/>
@Grapes(@Grab(group='com.lmax', module='disruptor', version='3.3.6'))
'com.lmax:disruptor:jar:3.3.6'

Download

Click the following link to download the jar file.

disruptor-3.3.6-javadoc.jar
disruptor-3.3.6-sources.jar
disruptor-3.3.6.jar
disruptor-3.3.6.pom



Related Tutorials