Crates.io | quick-kv |
lib.rs | quick-kv |
version | 1.0.0 |
source | src |
created_at | 2023-10-04 19:20:02.774273 |
updated_at | 2023-10-13 23:05:38.444872 |
description | A reliable key-value storage for modern software |
homepage | |
repository | https://github.com/ThatGuyJamal/quick-kv |
max_upload_size | |
id | 992920 |
size | 107,365 |
A reliable key-value storage for modern software
Documentation | Crates.io | Github
cargo add quick-kv
use quick_kv::prelude::*;
fn main() -> anyhow::Result<()>
{
let mut client = QuickClient::<String>::new(None);
client.get("star this repo")?;
Ok(())
}
Quick-KV comes with a REPL for interacting with the database.
To install the CLI, run the following command:
cargo install quick-kv
This is different from the cargo add
command because it installs the CLI globally allowing you to use it as a executable.