| Crates.io | s5_store_memory |
| lib.rs | s5_store_memory |
| version | 1.0.0-beta.1 |
| created_at | 2025-11-26 04:16:15.318628+00 |
| updated_at | 2025-11-26 04:16:15.318628+00 |
| description | In-memory blob storage backend for S5 |
| homepage | |
| repository | https://github.com/s5-dev/s5-rs |
| max_upload_size | |
| id | 1950921 |
| size | 40,694 |
In-memory implementation of the s5_core::Store trait.
DashMap<String, Bytes>use bytes::Bytes;
use s5_store_memory::MemoryStore;
use s5_core::Store;
let store = MemoryStore::new();
store.put_bytes("foo", Bytes::from("bar")).await?;