db-rs

An ergonomic, embedded, single-threaded database for Rustaceans.

Strengths

Quickstart

Add the following to your Cargo.toml:

toml db-rs = "0.2.1" db-rs-derive = "0.2.1"

Define your schema:

```rust use dbrsderive::Schema; use db_rs::{Single, List, LookupTable};

[derive(Schema)]

struct SchemaV1 { owner: Single, admins: List, users: LookupTable, } ```

Initialize your DB:

```rust use dbrs::Db; use dbrs::Config;

let mut db = SchemaV1::init(Config::infolder("/tmp/test/"))?; db.owner.insert("Parth".tostring())?;

println!("{}", db.owner.data().unwrap()); ```

Table Types

Each table has an in-memory representation and a corresponding log entry format. For instance [List]'s in memory format is a [Vec], and you can look at it's corresponding [list::LogEntry] to see how writes will be written to disk.

Tables that start with Lookup have a HashMap as part of their in memory format. [LookupTable] is the most general form, while [LookupList] and [LookupSet] are specializations for people who want HashMap<K, Vec<V>> or HashMap<K, HashSet<V>>. Their reason for existence is better log performance in the case of small modifications to the Vec or HashSet in question (see [lookuplist::LogEntry] or [lookupset::LogEntry]).

Log Compaction

At any point you can call [Db::compact_log] on your database. This will atomically write a compact representation of all your current tables. For example if there's a key in a LookupTable that was written to many times, the compact representation will only contain the last value. Each table type descibes it's own compact representation.

If your database is in an Arc<Mutex>> you can additionally use the [BackgroundCompacter] which will perform compactions periodically in a separate thread.

TXs and Batch Writing

You can [Db::begin_transaction] which will allow you to express batch operations that can be discarded as a set if your program is interrupted. Presently there is no way to abort a transaction. TXs are also a mechanism for batch writing, log entries are kept in memory until the transaction completes and written once to disk.

Active areas of thought and research

Features

clone - derive clone on all table types. Consistency between cloned database is not provided. Useful in testing situations.

Used by

License: BSD-3-Clause