hashtree-fs
Filesystem-based content-addressed blob storage for hashtree.
Simple storage backend that stores blobs as files on disk, organized by hash prefix for efficient lookup.
Usage
use FsStore;
use Store;
let store = new?;
// Store a blob
store.put?;
// Retrieve a blob
let data = store.get?;
Storage Layout
Blobs are stored in a directory structure based on hash prefix:
data/
ab/
cd/
ef1234...
cd/
ef/
5678...
Part of hashtree-rs.