Crates.io | ritekv |
lib.rs | ritekv |
version | 0.1.0 |
source | src |
created_at | 2020-10-25 16:20:17.388699 |
updated_at | 2021-01-16 14:44:46.762909 |
description | RiteKV, A key-value store written in Rust. |
homepage | |
repository | https://github.com/ritedb/ritekv |
max_upload_size | |
id | 305318 |
size | 29,896 |
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.
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(())
Chojan Shang - @PsiACE - psiace@outlook.com
Project Link: https://github.com/ritedb/ritekv
Licensed under either of: