Skip to content
forked from datrs/hyperdb

Distributed, scalable database. To be implemented.

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT
Notifications You must be signed in to change notification settings

khernyo/hyperdb

 
 

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

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Rust 100.0%