pile
- a simple and fast append-only data storerust
use data_pile::Database;
let db = Database::new("./pile").unwrap();
let value = b"some data";
db.put(&value).unwrap();
Values are accessible only by their sequential numbers. You will need an external index if you want any other kind of keys.