Skip to content

Releases: weezy20/kvs

Kvs client-server

26 Feb 07:27
70b32a9
Compare
Choose a tag to compare

This release brings a new backend sled into the mix. You can now start KVS with either kvs which is the default or sled

kvs-server --engine sled --addr <Socket> 
#  Default socket is 127.0.0.1:4000

The client is what you'll use to talk to this server. Same defaults as kvs-server:

kvs-client --addr <server-socket> set hello world
kvs-client --addr <server-socket> get hello 
> world
# If using default port 4000, you can omit the `--addr` flag
kvs-client set awesome true

Single threaded key value store with persistent logs

22 Oct 06:12
b4fda64
Compare
Choose a tag to compare
Merge pull request #2 from weezy20/compaction

Compaction