A Go key/value store service based on BoltDB, access BoltDB from multiple processes.
Please see here.
go get github.com/helinwang/kv/cmd/kvctl
go get github.com/helinwang/kv/cmd/kv
# Start kv service:
kv -path db.bin
# Test (open another terminal)
kvctl put :8080 hello hi
kvctl get :8080 hello
# Output: hi
Supported in the CLI. Please see here.