vsdb 9.0.0

A std-collection-like database
Documentation
vsdb-9.0.0 has been yanked.

vsdb

Crates.io Docs.rs License Rust

vsdb is a high-performance, embedded database with an API similar to Rust's standard collections.

This crate provides high-level, typed data structures that are backed by a persistent key-value store. It is the primary crate for end-users.

Installation

Add this to your Cargo.toml:

[dependencies]
vsdb = "9.0.0"

Highlights

For more detailed API examples, see API Examples. For the versioned storage architecture with diagrams, see Versioned Module — Architecture & Internals.

  • Familiar API: Most APIs are designed to mirror their counterparts in the standard library.
    • Mapx behaves like std::collections::HashMap.
    • MapxOrd behaves like std::collections::BTreeMap.
  • Persistent Storage: Data is automatically saved to disk and loaded on instantiation.
  • Typed Keys and Values: Keys and values are strongly typed and automatically serialized/deserialized.
  • Git-Model Versioning: VerMap provides branching, commits, three-way merge, rollback, and history — backed by a persistent B+ tree with copy-on-write structural sharing.

Features

Uses RocksDB as the storage backend.

  • msgpack_codec: (Default) Use rmp-serde as the codec for faster performance.
  • cbor_codec: Use serde_cbor_2 as an alternative codec.

msgpack_codec and cbor_codec are mutually exclusive. To switch from the default MessagePack codec to CBOR, disable default features:

[dependencies]
vsdb = { version = "9.0.0", default-features = false, features = ["cbor_codec"] }

Usage

Mapx

Mapx is a persistent, hash map-like data structure.

use vsdb::Mapx;

let mut map = Mapx::new();

// Insert some key-value pairs
map.insert(&"key1", &"value1");
map.insert(&"key2", &"value2");

// Get a value
assert_eq!(map.get(&"key1"), Some("value1".to_string()));

// Check if a key exists
assert!(map.contains_key(&"key2"));

// Iterate over the key-value pairs
for (key, value) in map.iter() {
    println!("{}: {}", key, value);
}

// Remove a key-value pair
map.remove(&"key1");

MapxOrd

MapxOrd is a persistent, B-tree map-like data structure that keeps keys in sorted order.

use vsdb::MapxOrd;

let mut map = MapxOrd::new();

// Insert some key-value pairs
map.insert(&3, &"three");
map.insert(&1, &"one");
map.insert(&2, &"two");

// Get a value
assert_eq!(map.get(&1), Some("one".to_string()));

// Iterate over the key-value pairs in sorted order
for (key, value) in map.iter() {
    println!("{}: {}", key, value);
}

// Get the first and last key-value pairs
assert_eq!(map.first(), Some((1, "one".to_string())));
assert_eq!(map.last(), Some((3, "three".to_string())));

VerMap

VerMap provides Git-style versioned storage with branching, commits, merge, and rollback.

The typical lifecycle is: create → write → commit → branch → merge → gc.

Merge conflict resolution: source wins on conflicts

merge(source, target) uses three-way merge with the common ancestor. If only one side changed a key relative to the ancestor, that single-sided change is preserved. If both sides changed the same key differently, source wins. A deletion is treated as "assigning ∅", so delete-vs-modify is also resolved by source priority.

source target result
unchanged (A) changed to T T (target-only change preserved)
changed to S unchanged (A) S (source-only change preserved)
changed to S changed to T S (conflict → source wins)
deleted (∅) changed to T (conflict → source wins → delete)
changed to S deleted (∅) S (conflict → source wins → keep)

The caller controls priority by choosing which branch to pass as source vs target.

use vsdb::versioned::map::VerMap;
use vsdb::versioned::BranchId;

// 1. Create an empty versioned map (starts with a "main" branch).
let mut m: VerMap<u32, String> = VerMap::new();
let main = m.main_branch();

// 2. Write on the main branch and commit a snapshot.
m.insert(main, &1, &"hello".into()).unwrap();
m.commit(main).unwrap();

// 3. Fork a feature branch — cheap, no data copied.
let feat: BranchId = m.create_branch("feature", main).unwrap();
m.insert(feat, &1, &"updated".into()).unwrap();
m.commit(feat).unwrap();

// 4. Branches are isolated.
assert_eq!(m.get(main, &1).unwrap(), Some("hello".into()));
assert_eq!(m.get(feat, &1).unwrap(), Some("updated".into()));

// 5. Three-way merge: feature → main (source wins on conflict).
m.merge(feat, main).unwrap();
assert_eq!(m.get(main, &1).unwrap(), Some("updated".into()));

// 6. Clean up: delete the branch, then garbage-collect unreachable data.
m.delete_branch(feat).unwrap();
m.gc();

Important Notes

  • The serialized result of a vsdb instance cannot be used for distributed consensus. The serialized data contains meta-information (like storage paths) that may differ across environments. The correct approach is to read the required data and then process the raw content.

License

This project is licensed under the MIT license.