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

https://github.com/caasmo/kv-repl-barebones


https://github.com/caasmo/kv-repl-barebones

barebones kv kv-store kvstore repl

Last synced: 4 months ago
JSON representation

Awesome Lists containing this project

README

          

## kv-repl-barebones

**kv-repl-barebones** is a simple exercise to show a barebones Read-Eval-Print
Loop, or REPL, for managing a basic key-value store.

## Run

go run cmd/main.go
> read k
Key not found: k
> begin
> write k 42
> read k
42
> commit
> read k
42
> begin
> remove k
> read k
Key not found: k
> discard
> read k
42
> exit

## Test

go test -v -coverprofile=c.out ./...