Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 818 Bytes

README.md

File metadata and controls

35 lines (23 loc) · 818 Bytes

KV Store

Simple key value storage implementation

Features

  • Simple: Easy to use and understand
  • Fast: High performance
  • Durable: Data is persisted on disk

For more information, check the documentation.

Installation

To install the KV Store we recommend using one of our docker images.

To run the latest version of the KV Store, run the following commands:

git clone [email protected]:gfffrtt/kv-store.git
cd kv-store
make run

Usage

To connect and performance operations is simple, install one of our SDKs for your favorite language and start using it.

TODO List

  • Make the data persistent (currently it is stored in memory) to support restarts
  • Make the KV Store distributed
  • Create SDKs
  • Add examples to the documentation