rskey
A simple persistent key-value store that wraps HashMap.
Getting started
use Store;
let mut s = open?;
s.insert;
assert_eq!;
s.sync?;
A basic CLI tool is also included to list, get, and set key-value pairs.
Installation
Usage
The rskey tool expects to find a data file named store.kv in the current
directory. If there is no such file, one will be created as soon as you set a
key.
Listing all data
key1: value1
key2: value2
Getting a value by key
key1: value1
Setting a key-value pair
Current version: 0.4.0
License: MIT OR Apache-2.0