qrwcell

Crates.ioqrwcell
lib.rsqrwcell
version0.2.0
sourcesrc
created_at2021-07-26 07:58:04.523876
updated_at2021-08-03 16:24:14.872357
descriptionRead-write cell that aims to reduce the amount of blocking compared to a single read-write lock.
homepagehttps://github.com/cezarmathe/qrwcell
repositoryhttps://github.com/cezarmathe/qrwcell
max_upload_size
id427296
size13,433
Cezar (cezarmathe)

documentation

README

qrwcell - quick read-write cell

Crates.io Docs.rs Rust

Read-write cell that aims to reduce the amount of blocking compared to a single read-write lock.

The cell has two slots - one for reading and one for writing. Writing alternates the slot that is currently served to readers, thereby minimising blocking on a reader-writer lock.

Commit count: 20

cargo fmt