Skip to content

mdkhanga/kvstore

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

49 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

kvstore

kvstore implementation of a key value store.

The inspiration comes from the Amazon Dynamo paper.
https://www.allthingsdistributed.com/files/amazon-dynamo-sosp2007.pdf

Plan:
Key value store
Cluster - no leader all servers equal
Partitioning using consistent hashing
Storage - SSTable
Gossip
etc

WORK IN PROGRESS. NOT READY FOR USE.

Usage

Building the code

make

Start a server

./kvstore

Store a Key/Value

curl -X POST -H "Content-type:application/json" -d '{"Key": "Name", "Value":"somevalue"}' http://localhost:8080/kvstore

Retrieve a the above value

curl http://localhost:8080/kvstore/Name

About

Distributed Key Value Store

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published