datrs / hyperdb

Distributed, scalable database. To be implemented.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

License:Other


Languages

Language:Rust 100.0%