s5_store_memory

Crates.ios5_store_memory
lib.rss5_store_memory
version1.0.0-beta.1
created_at2025-11-26 04:16:15.318628+00
updated_at2025-11-26 04:16:15.318628+00
descriptionIn-memory blob storage backend for S5
homepage
repositoryhttps://github.com/s5-dev/s5-rs
max_upload_size
id1950921
size40,694
(redsolver)

documentation

README

s5_store_memory

In-memory implementation of the s5_core::Store trait.

Overview

  • Backend: DashMap<String, Bytes>
  • Features: Supports rename, case-sensitive, unlimited directory size.
  • Use Case: Testing, temporary storage, caching.

Usage

use bytes::Bytes;
use s5_store_memory::MemoryStore;
use s5_core::Store;

let store = MemoryStore::new();
store.put_bytes("foo", Bytes::from("bar")).await?;
Commit count: 0

cargo fmt