Skip to content

YaroslavGaponov/keva

Repository files navigation

Keva

Distributed key-value store

General

keva

Demo

Start the server

docker-compose up --build

Insert data

curl -XPOST http:https://localhost:5555/storage/test1 -d "hello world"

Read data

curl -XGET http:https://localhost:5555/storage/test1 

Update data

curl -XPUT http:https://localhost:5555/storage/test1 -d "hi world"

Delete data

curl -XDELETE http:https://localhost:5555/storage/test1