coco 0.3.2

Concurrent collections
Documentation

Concurrent collections

Build Status License Cargo Documentation

This is an experimental crate that will be soon deprecated in favor of Crossbeam.

This crate offers several collections that are designed for performance in multithreaded contexts. They can be freely shared among multiple threads running in parallel, and concurrently modified without the overhead of locking.

The following collections are available:

  • Stack: A lock-free stack.
  • deque: A lock-free work-stealing deque.