https://github.com/mortinger91/transactional-key-value-store
https://github.com/mortinger91/transactional-key-value-store
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mortinger91/transactional-key-value-store
- Owner: mortinger91
- Created: 2022-02-25T20:23:58.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-05-26T10:35:23.000Z (about 4 years ago)
- Last Synced: 2025-06-26T21:12:40.207Z (about 1 year ago)
- Language: C++
- Size: 10.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 ..