ritekv

Crates.ioritekv
lib.rsritekv
version0.1.0
sourcesrc
created_at2020-10-25 16:20:17.388699
updated_at2021-01-16 14:44:46.762909
descriptionRiteKV, A key-value store written in Rust.
homepage
repositoryhttps://github.com/ritedb/ritekv
max_upload_size
id305318
size29,896
Chojan Shang (PsiACE)

documentation

README

RiteKV

crates.io version downloads docs.rs docs

RiteKV, a experimental key-value pair storage, trying to synthesize interesting research results in recent years. The main goal is to provide reasonable performance and moderate reliability.

Work in progress, you can now think of it as a simple in-memory key-value store and evaluate its API.

Usage

let mut store = MemStore::open();
store.set("beep", "boop").unwrap();
let value = store.get("beep").unwrap();
assert_eq!(value, Some("boop".as_bytes().to_owned()));
Ok(())

Contact

Chojan Shang - @PsiACE - psiace@outlook.com

Project Link: https://github.com/ritedb/ritekv

License

Licensed under either of:

Commit count: 27

cargo fmt