Fremkit is a simple broadcast log.
A Log's primary use case is to store an immutable sequence of messages, events, or other data, and to allow multiple readers to access the data concurrently.
Mutex<Vec<_>>
. (See benchmarks)Add this to your Cargo.toml
:
toml
[dependencies]
fremkit = "^0.1"
```rust use fremkit::bounded::Log;
let log: Log
asserteq!(log.get(0), Some(&1)); asserteq!(log.get(1), Some(&2)); ```
This crate is under the Apache-2.0 License.