Disruptor-cpp icon indicating copy to clipboard operation
Disruptor-cpp copied to clipboard

Port of LMAX Disruptor to C++

Results 5 Disruptor-cpp issues
Sort by recently updated
recently updated
newest added

hello ! this is very nice and useful project thank you for making it available. Sadly it doesn't build on aarch64 architecture (mac M1) as it replies on some assembly...

Are there benchmark results on how consistent the latency is compared to LMAX Disruptor Java?

See https://github.com/Abc-Arbitrage/Disruptor-cpp/issues/10 which fixed this issue for SingleProducerSequencer but the same issue is still present in MultiProducerSequencer

Hey, thank you for the port! I was comparing to java version, and feels MultProducerSequencer.setAvailable() has different visibility properties? ```cpp void setAvailableBufferValue(std::int32_t index, std::int32_t flag) { m_availableBuffer[index] = flag; }...