is not current version
Last Version 2.7

org.axonframework.com.lmax:disruptor 2.0

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.

Categories

Categories

Axon Application Layer Libs Distributed Applications Disruptor General Purpose Libraries High Performance
GroupId

GroupId

org.axonframework.com.lmax
ArtifactId

ArtifactId

disruptor
Version

Version

2.0
Type

Type

jar

Download disruptor 2.0


<!-- https://jarcasting.com/artifacts/org.axonframework.com.lmax/disruptor/ -->
<dependency>
    <groupId>org.axonframework.com.lmax</groupId>
    <artifactId>disruptor</artifactId>
    <version>2.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.axonframework.com.lmax/disruptor/
implementation 'org.axonframework.com.lmax:disruptor:2.0'
// https://jarcasting.com/artifacts/org.axonframework.com.lmax/disruptor/
implementation ("org.axonframework.com.lmax:disruptor:2.0")
'org.axonframework.com.lmax:disruptor:jar:2.0'
<dependency org="org.axonframework.com.lmax" name="disruptor" rev="2.0">
  <artifact name="disruptor" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.axonframework.com.lmax', module='disruptor', version='2.0')
)
libraryDependencies += "org.axonframework.com.lmax" % "disruptor" % "2.0"
[org.axonframework.com.lmax/disruptor "2.0"]