https://github.com/rustbase/dustdata
A data concurrency control key-value storage engine to Rustbase
https://github.com/rustbase/dustdata
database nosql rust rustbase storage-engine
Last synced: 3 months ago
JSON representation
A data concurrency control key-value storage engine to Rustbase
- Host: GitHub
- URL: https://github.com/rustbase/dustdata
- Owner: rustbase
- License: mit
- Created: 2022-05-07T13:41:40.000Z (about 3 years ago)
- Default Branch: develop
- Last Pushed: 2025-01-22T14:38:17.000Z (5 months ago)
- Last Synced: 2025-03-31T04:07:30.449Z (3 months ago)
- Topics: database, nosql, rust, rustbase, storage-engine
- Language: Rust
- Homepage: https://rustbase-web.vercel.app/dustdata
- Size: 220 KB
- Stars: 37
- Watchers: 1
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://crates.io/crates/dustdata)
[](https://docs.rs/dustdata)# DustData
A data concurrency control storage engine to [Rustbase](https://github.com/rustbase/rustbase)Join our [community](https://discord.gg/m5ZzWPumbd) and [chat](https://discord.gg/m5ZzWPumbd) with other Rust users.
# ⚠️ Warning
This is a work in progress. The API is not stable yet.# 🔗 Contribute
[Click here](./CONTRIBUTING.md) to see how to Contribute# How to install
Add the following to your `Cargo.toml`:```toml
[dependencies]
dustdata = "2.0.0-beta.6"
```# Usage
Initialize a new `DustData` instance with the default configuration:
```rust
use dustdata::DustData;let mut dustdata = DustData::new(Default::default()).unwrap();
```## Inserting data into a collection
```rust
#[derive(Serialize, Deserialize, Clone, Debug)]
struct User {
name: String,
age: u32,
}let collection = dustdata.collection::("users");
let user = User {
name: "Pedro".to_string(),
age: 21,
};// Creating a new transaction.
let mut transaction = collection.start_branch();// Inserting the user into the transaction.
transaction.insert("user:1", user);// Committing the transaction.
collection.commit(transaction).unwrap();// Done!
```## Reading data from a collection
```rust
let collection = dustdata.collection::("users").unwrap();let user = collection.get("user:1").unwrap();
```# Authors
| [
@peeeuzin](https://github.com/peeeuzin) |
| :-------------------------------------------------------------------------------------------------------------------: |# License
[MIT License](./LICENSE)