left-right

Crates.ioleft-right
lib.rsleft-right
version0.11.5
sourcesrc
created_at2020-11-22 05:30:49.095495
updated_at2022-06-23 03:38:43.741535
descriptionA concurrency primitive for high concurrency reads over a single-writer data structure.
homepage
repositoryhttps://github.com/jonhoo/left-right.git
max_upload_size
id314928
size92,152
Jon Gjengset (jonhoo)

documentation

README

Codecov Crates.io Documentation

Left-right is a concurrency primitive for high concurrency reads over a single-writer data structure. The primitive keeps two copies of the backing data structure, one that is accessed by readers, and one that is access by the (single) writer. This enables all reads to proceed in parallel with minimal coordination, and shifts the coordination overhead to the writer. In the absence of writes, reads scale linearly with the number of cores.

Commit count: 388

cargo fmt