Crates.io | surrealkv |
lib.rs | surrealkv |
version | 0.5.0 |
source | src |
created_at | 2024-02-08 13:00:15.865719 |
updated_at | 2024-10-29 10:42:42.250959 |
description | A low-level, versioned, embedded, ACID-compliant, key-value database for Rust |
homepage | https://github.com/surrealdb/surrealkv |
repository | https://github.com/surrealdb/surrealkv |
max_upload_size | |
id | 1132066 |
size | 481,095 |
surrealkv is a versioned, low-level, persistent, embedded key-value database implemented in Rust. This ACID-compliant database offers the following features:
Transaction Support: SurrealKV supports rich transactions, allowing multiple items to be inserted, updated, or deleted simultaneously. These transactions are applied atomically, ensuring atomicity and consistency in line with ACID principles. This makes updates invisible until they are committed.
Isolation: SurrealKV provides two levels of isolation - Snapshot Isolation and Serializable Snapshot Isolation - to prevent concurrent transactions from interfering with each other.
Durability: SurrealKV ensures durability by persisting data on disk, protecting against data loss in the event of a system failure.
Multi-Version Concurrency Control (MVCC): SurrealKV employs immutable versioned adaptive radix tries via vart. This allows for any number of concurrent readers and writers to operate without blocking each other.
For more information on the underlying immutable versioned adaptive radix tries used, visit vart.