Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 977 Bytes

README.md

File metadata and controls

39 lines (30 loc) · 977 Bytes

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