26 releases (14 breaking)

0.24.0 Aug 25, 2022
0.23.1 Feb 9, 2022
0.22.0 Sep 8, 2020
0.20.2 Mar 6, 2020
0.4.0 Mar 6, 2018

#62 in Database implementations

Download history 938/week @ 2023-12-11 892/week @ 2023-12-18 489/week @ 2023-12-25 517/week @ 2024-01-01 967/week @ 2024-01-08 1094/week @ 2024-01-15 1090/week @ 2024-01-22 580/week @ 2024-01-29 635/week @ 2024-02-05 782/week @ 2024-02-12 1220/week @ 2024-02-19 897/week @ 2024-02-26 1478/week @ 2024-03-04 1842/week @ 2024-03-11 1599/week @ 2024-03-18 847/week @ 2024-03-25

5,817 downloads per month
Used in 9 crates (8 directly)

ISC license

43KB
1K SLoC

kv

An embedded key/value store for Rust built on sled

  • Easy configuration
  • Integer keys
  • Serde integration

Note: kv 0.20 and greater have been completely re-written to use sled instead of LMDB. In the process the entire API has been redesigned and simplified significantly. If you still need to use LMDB or don't like the new interface then you might want to check out rkv.

Optional features

  • msgpack-value
    • MessagePack encoding using rmp-serde
  • json-value
    • JSON encoding using serde_json
  • bincode-value
    • bincode encoding using bincode
  • lexpr-value
    • S-expression encoding using serde-lexpr

Documentation

See https://docs.rs/kv


lib.rs:

kv is a simple way to embed a key/value store in Rust applications. It is built using sled and aims to be as lightweight as possible while still providing a nice high level interface.

Getting started

use kv::*;

#[derive(serde::Serialize, serde::Deserialize, PartialEq)]
struct SomeType {
    a: i32,
    b: i32
}

fn run() -> Result<(), Error> {
    // Configure the database
    let mut cfg = Config::new("./test/example1");

    // Open the key/value store
    let store = Store::new(cfg)?;

    // A Bucket provides typed access to a section of the key/value store
    let test = store.bucket::<Raw, Raw>(Some("test"))?;

    let key = Raw::from(b"test");
    let value = Raw::from(b"123");

    // Set test = 123
    test.set(&key, &value)?;
    assert!(test.get(&key).unwrap().unwrap() == value);
    assert!(test.get(&b"something else".into()).unwrap() == None);

    // Integer keys
    let aaa = store.bucket::<Integer, String>(Some("aaa"))?;
    let key = Integer::from(1);
    let value = String::from("Testing");
    aaa.set(&key, &value);

    #[cfg(feature = "json-value")]
    {
        // Using a Json encoded type is easy, thanks to Serde
        let bucket = store.bucket::<&str, Json<SomeType>>(None)?;

        let k = "example";
        let x = Json(SomeType {a: 1, b: 2});
        bucket.set(&k, &x)?;

        let x: Json<SomeType> = bucket.get(&k)?.unwrap();

        for item in bucket.iter() {
            let item = item?;
            let key: String = item.key()?;
            let value = item.value::<Json<SomeType>>()?;
            println!("key: {}, value: {}", key, value);
        }

        // A transaction
        bucket.transaction(|txn| {
            txn.set(&"x", &Json(SomeType {a: 1, b: 2}))?;
            txn.set(&"y", &Json(SomeType {a: 3, b: 4}))?;
            txn.set(&"z", &Json(SomeType {a: 5, b: 6}))?;

            Ok(())
        })?;
    }
    Ok(())
}
#

Dependencies

~1.9–3.5MB
~67K SLoC