/hyperdb

Distributed, scalable database. To be implemented.

Primary LanguageRustOtherNOASSERTION

hyperdb

crates.io version build status downloads docs.rs docs

Distributed, scalable database. To be implemented.

Usage

extern crate hyperdb;

use std::path::PathBuf;

let location = PathBuf::from("./my.db");
let db = hyperdb::HyperDb::new(location);

db.put("/hello", b"world").unwrap();
let nodes = db.get("/hello").unwrap();
println!("/hello --> {}", nodes[0].value);

Installation

$ cargo add hyperdb

License

MIT OR Apache-2.0