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

https://github.com/mortinger91/transactional-key-value-store


https://github.com/mortinger91/transactional-key-value-store

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

          

Transactional Key Value Store project done for a job interview.

Commands:

SET // store the value for key
GET // return the current value for key
DELETE // remove the entry for key
COUNT // return the number of keys that have the given value
BEGIN // start a new transaction
COMMIT // complete the current transaction
ROLLBACK // revert to state prior to BEGIN call

Build:

git clone https://github.com/mortinger91/Transactional-Key-Value-Store
cd Transactional-Key-Value-Store
mkdir build
cd build
cmake ..