Persistent key-value store backed by GIT.
This package provides a key-value store that uses GIT for the permanent storage.
Example
use Repo;
let path = new;
let map = init;
map.insert_key;
map.insert_key;
map.commit;
To-do
- Add
rollback()
Persistent key-value store backed by GIT.
This package provides a key-value store that uses GIT for the permanent storage.
use Repo;
let path = new;
let map = init;
map.insert_key;
map.insert_key;
map.commit;
rollback()