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

https://github.com/odysa/lsdb

A key-value database
https://github.com/odysa/lsdb

database key-value-database key-value-store

Last synced: 10 months ago
JSON representation

A key-value database

Awesome Lists containing this project

README

          

# LSDB

A LSM based key-value Storage that supports compaction.

## run

Launch server
```
cargo run --bin kvs-server --addr 127.0.0.1:4000
```

launch client
```
cargo run --bin kvs-client set key value --addr 127.0.0.1:4000
```

available commands:
```
set key value
rm key
get key
```

## build
```
cargo build
```
## benchmark
```
cargo bench
```
## test
```
cargo test
```