A data concurrency control storage engine to Rustbase
Join our community and chat with other Rust users.
This is a work in progress. The API is not stable yet.
Click here to see how to Contribute
These are dependencies that are required to use the DustData. - bson
Add the following to your Cargo.toml
:
toml
[dependencies]
dustdata = "0.2.8"
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); ```
```rust // ... // Creating a data let data = bson::doc! { "name": "John Doe", "age": 30, }
dustdata.insert("key", data); ```
rust
// ...
let value = dustdata.get("key").unwrap().unwrap();
println!("{:?}", value);
```rust // ... let data = bson::doc! { "name": "Joe Mamma", "age": 42, }
dustdata.update("key", data); ```
rust
// ...
dustdata.delete("key");