Crates.io | append-only-vec |
lib.rs | append-only-vec |
version | 0.1.7 |
source | src |
created_at | 2022-03-08 22:34:00.979204 |
updated_at | 2024-10-12 21:52:59.265201 |
description | Append-only, concurrent vector |
homepage | |
repository | https://github.com/droundy/append-only-vec |
max_upload_size | |
id | 546620 |
size | 41,466 |
Note: currently there are frequent CI failures above, which are simply due to failure to install miri to run the test. The tests do pass when run locally.
This crate defines a single data simple structure, which is a vector to which you can only append data. It allows you to push new data values even when there are outstanding references to elements of the AppendOnlyVec
. Reading from a AppendOnlyVec
is much faster than if it had been protected by a std::sync::RwLock
.