pile - a simple and fast append-only data store

Crates.io codecov

Design goals

Usage guide

Example

rust use data_pile::Database; let db = Database::new("./pile").unwrap(); let value = b"some data"; db.put(&value).unwrap();

Transferring the data

Notes

Values are accessible only by their sequential numbers. You will need an external index if you want any other kind of keys.