Crates.io | synqueue |
lib.rs | synqueue |
version | 0.1.0 |
source | src |
created_at | 2022-05-29 04:57:35.678025 |
updated_at | 2022-05-29 04:57:35.678025 |
description | Internally synchronized (MPMC) queue |
homepage | https://github.com/kvark/synqueue |
repository | |
max_upload_size | |
id | 596299 |
size | 12,260 |
This is an experimental queue to be used in multi-threaded scenarios, like the task processors. More specifically:
Unlike other implementations, such as crossbeam-queue
, it doesn't carry a atomic bit per element.
Checked by both Miri and Loom on CI.
Note: experimental and currently slower than alternatives.