Skip to content
/ hyperdb Public

Distributed, scalable database. To be implemented.

License

Notifications You must be signed in to change notification settings

datrs/hyperdb

Repository files navigation

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

About

Distributed, scalable database. To be implemented.

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages