Crates.io | qrwcell |
lib.rs | qrwcell |
version | 0.2.0 |
source | src |
created_at | 2021-07-26 07:58:04.523876 |
updated_at | 2021-08-03 16:24:14.872357 |
description | Read-write cell that aims to reduce the amount of blocking compared to a single read-write lock. |
homepage | https://github.com/cezarmathe/qrwcell |
repository | https://github.com/cezarmathe/qrwcell |
max_upload_size | |
id | 427296 |
size | 13,433 |
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.