ckydb

A simple fast memory-first thread-safe key-value embedded database that persists data on disk.

It is read as 'skydb' This the rust implementation of ckydb

Quick Start

shell cargo new ckydb_example

TOML [dependencies] ckydb = { version = "0.0.5" } # put the appropriate version. 0.1.0 is just an example

```rust use ckydb::{connect, Controller};

fn main() { let mut db = connect("db", 4.0, 60.0).unwrap(); let keys = ["hey", "hi", "yoo-hoo", "bonjour"].tovec(); let values = ["English", "English", "Slang", "French"].tovec();

// Setting the values
println!("[Inserting key-value pairs]");
for (k, v) in keys.clone().into_iter().zip(values) {
    let _ = db.set(k, v);
}

// Getting the values
println!("[After insert]");
for k in keys.clone() {
    let got = db.get(k).unwrap();
    println!("For key: {:?}, Got: {:?}", k, got);
}

// Deleting some values
for k in &keys[2..] {
    let removed = db.delete(*k);
    println!("Removed: key: {:?}, resp: {:?}", k, removed);
}

for k in &keys {
    let got = db.get(*k);
    println!("[After delete: For key: {:?}, Got: {:?}", k, got);
}

// Deleting all values
let cleared = db.clear();
println!("Cleared: {:?}", cleared);

println!("[After clear]");
for k in &keys {
    let got = db.get(*k);
    println!("For key: {:?}, Got: {:?}", k, got);
}
db.close().expect("close");

}

```

shell cargo run

Examples

Some examples can be found in the /examples folder.

shell cargo run --example hello_ckydb

How to Run Tests

shell git clone git@github.com:sopherapps/ckydb.git

shell cd ckydb/implementations/rs_ckydb

shell cargo test

Under the Hood

Operations

File formats

goat[><?&(^#]1655304770518678-goat{&*/%}hen[><?&(^#]1655304670510698-hen{&*/%}pig[><?&(^#]1655304770534578-pig{&*/%}fish[><?&(^#]1655303775538278-fish$%#@*&^&

1655304770518678-goat{&*/%}1655304670510698-hen{&*/%}1655304770534578-pig{&*/%}1655303775538278-fish$%#@*&^&

1655304770518678-goat[><?&(^#]678 months{&*/%}1655304670510698-hen[><?&(^#]567 months{&*/%}1655304770534578-pig[><?&(^#]70 months{&*/%}1655303775538278-fish[><?&(^#]8990 months$%#@*&^&

Note: There is configuration that one can enable to escape the "token" in any user-defined key or value just to avoid weird errors. However, the escaping is expensive and it is thus turned off by default.

Acknowledgments

License

Copyright (c) 2022 Martin Ahindura. All implementations are licensed under the MIT License