crates.io

DustData

A data concurrency control storage engine to Rustbase

Join our community and chat with other Rust users.

⚠️ Warning

This is a work in progress. The API is not stable yet.

🔗 Contribute

Click here to see how to Contribute

Dependencies

These are dependencies that are required to use the DustData.

How to install

Add the following to your Cargo.toml:

toml [dependencies] dustdata = "1.2.0"

Usage

Initialize a DustData interface.

```rust // DustData Configuration let config = dustdata::DustDataConfig { path: "./testdata".tostring(), lsmconfig: dustdata::LsmConfig { flushthreshold: dustdata::Size::Megabytes(128), } };

let mut dustdata = dustdata::initialize(config); ```

Insert a data

```rust // ... // Creating a data let data = bson::doc! { "name": "John Doe", "age": 30, }

dustdata.insert("key", data); ```

Getting a data

rust // ... let value = dustdata.get("key").unwrap().unwrap(); println!("{:?}", value);

Updating a data

```rust // ... let data = bson::doc! { "name": "Joe Mamma", "age": 42, }

dustdata.update("key", data); ```

Deleting a data

rust // ... dustdata.delete("key");

To-dos

Authors

| [
@peeeuzin](https://github.com/peeeuzin) | | :-------------------------------------------------------------------------------------------------------------------: |

License

MIT License