Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wcygan/kv
kv
https://github.com/wcygan/kv
Last synced: 2 days ago
JSON representation
kv
- Host: GitHub
- URL: https://github.com/wcygan/kv
- Owner: wcygan
- Created: 2023-11-09T23:21:16.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-30T23:33:47.000Z (11 months ago)
- Last Synced: 2023-12-31T00:29:46.330Z (11 months ago)
- Language: Rust
- Size: 21.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# kv
A key-value store.
## Examples
### Run the server
```
cargo run --bin server
```### Run the CLI client
Set a key-value pair:
```
cargo run --bin cli put foo bar
```Get a value by key:
```
cargo run --bin cli get foo
```