hashtree-lmdb
LMDB-backed content-addressed blob storage for hashtree.
High-performance storage backend using LMDB (Lightning Memory-Mapped Database) for fast key-value storage.
Usage
use LmdbStore;
use Store;
let store = new?;
// Store a blob
store.put?;
// Retrieve a blob
let data = store.get?;
Features
- Memory-mapped I/O for fast reads
- ACID transactions
- Crash-resistant
Part of hashtree-rs.