reddb 0.2.0

Minimalistic in-memory embedded document data base with persistance
Documentation

RedDb

RedDb is an embedded fast, lightweight, and secure in-memory data store with persistance in different serde-compatible formats (json, ron, yaml). RedDb has an easy to use API for finding, updating and deleting your data.

Quickstart

Add RedDb to your Cargo.toml specifing what serializer you want to use:

[dependencies.RedDb]
version = "0.2.0"
features = ["json_ser"] # Json serialization / deserialization
features = ["ron_ser"] # Ron serialization / deserialization
features = ["yaml_ser"] # Yaml serialization / deserialization
use RedDb::{Document, RonDb,JsonStore,YamlStore};

#[derive(Clone, Serialize, PartialEq, Deserialize)]
struct MyStruct {
  foo: String,
}

fn main() -> Result<()> {
  // RedDb with RON persistance for MyStruct documents
  let db = RonDb::new::<MyStruct>()?;

  let my_struct = MyStruct {
    foo: String::from("hello")
  };

  // Insert data
  let doc: Document<MyStruct> = db.insert_one(my_struct)?;
  // Find by uuid
  let my_doc: Document<MyStruct> = db.find_one(&doc.uuid)?;
  // Find all records equal to my_struct
  let my_docs : Vec<Document<MyStruct>> = db.find(&my_struct)?;
  Ok(())
}

Why

RedDb is the migration of a side project originally written in NodeJs that was designed to store objects in memory (with hd persistance) and do searchs on them.

When

If you are looking for a some short of Key/Value you will find better options. If you are looking for an embedded fast, lightweight and easy to use in-memory data store with persistance, RedDb could be a good choice.

API

Data

Data is serialized and deserialized in different serde-compatible formats (json, ron, yaml) and wrapped into the Document struct as follows:

pub struct Document<T> {
  pub id: Uuid,
  pub data: T,
}

Since data field is a generic you can store any kind of data you want. As you will see on the API, Document<T> is the default return type for most operations.

Persistance

RedDb's persistence uses an append-only format (AOF) so all write operations are added to to the end of the database file. The database is automatically compacted in just one line per object/record everytime you start the database in your application.

The API provides bulk-like write operations (insert & update) for vectors of data that are faster to persist due to hd sync operations. Use them instead iterate over the *_one() methods you'll see on the API.

Inserting Data

RedDb use uuid identifiers as unique ids. An uuid will be returned when you insert a record.

Insert one

#[derive(Clone, Serialize, PartialEq, Deserialize)]
struct MyStruct {
  foo: String,
}

let my_struct = MyStruct {
  foo: String::from("hello")
};

let doc: Document<TestStruct> = store.insert_one(my_struct)?;
println!("{:?}", doc.uuid);
// 94d69737-4b2e-4985-aaa1-e28bbff2e6d0

Insert

If you want to insert a vector of data insert() is more suitable and faster to persists than iterate over insert_one() method due to the nature of the AOF persistance.

let my_docs = vec![MyStruct {
  foo: String::from("one"),
},
MyStruct {
  foo: String::from("two"),
}];

let docs: Vec<Document<MyStruct>> = db.insert(my_docs)?;

Finding Data

There are two ways to find your data. By it's uuid or looking into the database what data matches your query.

Find one

Performs a search by uuid.

let my_struct = MyStruct {
  foo: String::from("hello")
};

let inserted_doc : Document<TestStruct> = db.insert_one(my_struct)?;
let doc: Document<MyStruct> = db.find_one(&inserted_doc.uuid)?;

Find

Look into the database for data matching your query.

let one = MyStruct {
  foo: String::from("Hello"),
};

let two = MyStruct {
  foo: String::from("Hello"),
};

let three = MyStruct {
  foo: String::from("Bye"),
};


let many = vec![one.clone(), two.clone(), three.clone()];
let inserted_doc : Document<MyStruct> = db.insert(many)?;
let docs: Vec<Document<MyStruct>> = db.find(&one)?;

Updating Data

Update data is pretty straightforward. You can update data

Update one

Update one record, using it's uuid as search param.

let my_struct = MyStruct {
  foo: String::from("hello")
};

let new_value = MyStruct {
  foo: String::from("bye"),
};

let inserted_doc : Document<MyStruct> = db.insert_one(my_struct)?;
let updated: bool = db.update_one(&inserted_doc.uuid, new_value))?;

Update

You can update all data in the databas that matches your query param. Update will return the number of updated documents.

let search = MyStruct {
  foo: String::from("hello")
};

let new_value = MyStruct {
  foo: String::from("bye"),
};

let updated: usize = store.update(&search, &new_value)?;

Deleting Data

Delete one

Delete a record by it's uuid.

let my_struct = MyStruct {
  foo: String::from("hello")
};

let doc: Document<MyStruct> = db.insert_one(my_struct)?;
let deleted : bool = db.delete_one(&doc.uuid))?;

Delete

Like in update method, this method will lookup into the database which data matches your query and then delete it.

let search = MyStruct {
  foo: String::from("hello")
};

let deleted = store.delete(&search)?;
println!("{:?}", updated);
// 1

License

This library is licensed under either of

at your option.