redb homepage, documentation and downloads – Embedded key-value database in pure Rust – News Fast Delivery
redb is a simple,Portable, high-performance, ACID, embedded key-value storage. redb is written in pure Rust and is supported by lmdb some inspiration.data stored inan mmap’ed,copy-on-write B-trees in the collection.For details, seedesign document. use redb::{Database, Error, ReadableTable, TableDefinition}; const TABLE: TableDefinition<str, u64> = TableDefinition::new(“my_data”); fn main() -> Result<(), Error> { let db = unsafe { Database::create(“my_db.redb”)? […]