| Crates.io | hashtree-lmdb |
| lib.rs | hashtree-lmdb |
| version | 0.2.3 |
| created_at | 2025-12-17 15:38:33.850198+00 |
| updated_at | 2026-01-19 13:11:31.587441+00 |
| description | LMDB-backed content-addressed blob storage for hashtree |
| homepage | |
| repository | https://files.iris.to/#/npub1xndmdgymsf4a34rzr7346vp8qcptxf75pjqweh8naa8rklgxpfqqmfjtce/hashtree |
| max_upload_size | |
| id | 1990553 |
| size | 41,435 |
LMDB-backed content-addressed blob storage for hashtree.
High-performance storage backend using LMDB (Lightning Memory-Mapped Database) for fast key-value storage.
use hashtree_lmdb::LmdbStore;
use hashtree_core::Store;
let store = LmdbStore::new("/path/to/data")?;
// Store a blob
store.put(&hash, &data)?;
// Retrieve a blob
let data = store.get(&hash)?;
Part of hashtree-rs.