gitmap 0.1.0

Persistant key-value store backed by GIT.
Documentation
  • Coverage
  • 96%
    24 out of 25 items documented0 out of 24 items with examples
  • Size
  • Source code size: 40.63 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 521.82 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 25s Average build duration of successful builds.
  • all releases: 25s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • Documentation
  • xpepermint/gitmap
    2 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • xpepermint

Persistent key-value store backed by GIT.

This package provides a key-value store that uses GIT for the permanent storage.

Example

use gitmap::Repo;

let path = Path::new("/storage/path");
let map = Repo::init(path);
map.insert_key("key1", "value1".to_bytes());
map.insert_key("key2", "value2".to_bytes());
map.commit("First commit");

To-do

  • Add rollback()