22 skills found
schets / MultiqueueA fast mpmc queue with broadcast capabilities
MengRao / WFMPMCA bounded wait-free(almost) zero-copy MPMC queue written in C++11, which can also reside in SHM for IPC
Taymindis / Wfqueuewait free FIFO queue, easy built cross platform(no extra dependencies needed)
nim-works / LoonyA high throughput MPMC lock-free queue based on a paper by Giersch, Nolte et al implemented in pure Nim.
alexandrnikitin / MPMCQueue.NETBounded multiple producers multiple consumers queue for .NET
joadnacer / Atomic QueuesFast bounded MPMC and SPSC queues for C++20
Pslydhh / ObqueueA simple fast MPMC obstruction-free linearizable concurrent queue for C (based on linux[futex]/gcc/x86_64)
tower120 / ChuteAn mpmc/spmc lock-free broadcast queue.
d36u9 / Asyncasync is a tiny C++ header-only high-performance library for async calls handled by a thread-pool, which is built on top of an unbounded MPMC lock-free queue.
doraemonkeys / Fast MpmcA high-performance, generic MPMC queue in Go that uses buffer swapping to minimize contention and optimize throughput.
tower120 / Rc Event QueueVecDeque-like fast, unbounded, mpmc/spmc concurent FIFO message queue. Lockless reads, write-lock writes.
carllerche / Two Lock QueueA MPMC channel based on the two lock queue algorithm
huangfcn / Lockfreelock-free data structures: SPSC ring buffer, MPMC ring buffer, MPMC single linked list queue, MPMC single linked list stack; lock free memory management library using fix sized memory managed in single linked list
oliver-giersch / Looqueue RsFast, concurrent, safe MPMC & MPSC FIFO queue implementation
BagritsevichStepan / Lock Free Data StructuresLow latency lock free SPSC, SPMC, MPMC Queue and Stack. Fast SpinLock, SeqLock
oliver-giersch / LooqueueReference C++ implementation of looqueue (lock-free MPMC queue)
kvark / SynqueueYet another MPMC queue
b0bleet / CmpmcC implementation of Dmitry Vyukov's Bounded MPMC queue.
PrakaramJoshi / FastBufferVery Fast MPMC C++ implementation
Pslydhh / ObsFreeQueueA High performance Obstruction-Free Concurrent MPMC unbounded queues Based on FAA(FetchAndAdd) and Linked Arrays