data-ringbuffer icon indicating copy to clipboard operation
data-ringbuffer copied to clipboard

Haskell implementation of a Ringbuffer inspired by the "Disruptor Pattern"

Ring Buffer

Build Status

Haskell implementation of a concurrent, lock-free, queue-like data structure (actually a ring buffer), inspired by "Disruptor".

Build

$ # build the library and tests
$ cabal configure --enable-benchmarks
$ # run the benchmarks
$ GHCRTS='-N' cabal bench