simplestore 0.0.4

Simple key value store which uses the filesystem advantages
Documentation
  • Coverage
  • 0%
    0 out of 10 items documented0 out of 7 items with examples
  • Size
  • Source code size: 18.38 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 318.64 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 10s Average build duration of successful builds.
  • all releases: 10s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • PumpkinSeed

simplestore

Simple key value store which uses the filesystem advantages

NOTE: Project WIP, we are testing it heavily at the moment and make fixes based on that.

Usage

use simplestore::{Store};

let s = Store::new();

// Set the store dir (keep in mind the permissions)
s.ssd("/opt/simplestore");

s.put("user", "user12345", String::from("data"));
let result = s.get("user", "user12345"); // Result<String, String>