perkv

Crates.ioperkv
lib.rsperkv
version0.0.2
sourcesrc
created_at2019-10-18 20:28:40.860913
updated_at2019-10-28 20:19:17.315941
descriptionSimple persistent generic HashMap/Key-value store
homepage
repositoryhttps://github.com/zserik/perkv
max_upload_size
id173840
size35,754
Alain Emilia Anna Zscheile (fogti)

documentation

https://docs.rs/perkv

README

perkv

crates.io version Build status Documentation License

Simple persistent generic HashMap/Key-value store, using the Persy Index API.

This is in a beta state at the moment.

Basic usage:

let test_store = perkv::KV::<String, String>::new("./basic.cab").unwrap();

let _ = test_store.insert("key", "value");
println!("{:?}", test_store.get("key"));
let _ = test_store.remove("key");
Commit count: 0

cargo fmt