Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/wcygan/kv

kv
https://github.com/wcygan/kv

Last synced: 2 days ago
JSON representation

kv

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
```