Skip to content

odysa/roltdb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

07338e4 · Feb 10, 2022

History

57 Commits
Feb 8, 2022
Feb 10, 2022
Feb 8, 2022
Feb 3, 2022
Jan 30, 2022
Feb 8, 2022

Repository files navigation

RoltDB

RoltDB is Rust implementation of Bolt.

let db = DB::new(path);
// begin a writable tx
let tx = db.tx(true);
let b = tx.create_bucket("test");
b.put(b"hello",b"hello world").unwrap();
let value = b.get(b"hello").unwrap();
assert_eq!(value, "hello world");

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages