Skip to content

SingleConsumerQueue

Ben Manes edited this page Oct 23, 2015 · 2 revisions

A lock-free queue that supports concurrent producers and is restricted to a single consumer. This implementation employs a combining backoff arena to reduce contention caused by multiple producers. The benefit of using an arena is demonstrated by adapting this benchmark where the backoff strategy was manually disabled.

Clone this wiki locally