A simple Redis clone implemented in C++. This project is part of a Codecrafters.io challenge to build a basic version of the Redis key-value store from scratch.
- Simple key-value storage system
- Support for basic Redis commands
- Implemented in C++
- C++ Compiler (e.g., g++)
- CMake (for building)
-
Clone the repository:
git clone https://github.com/SrinathhSatuluri/RedisDB.git cd RedisDB -
Build the project using CMake:
mkdir build cd build cmake .. make -
Run the application:
./redisdb
After running the application, you can use basic Redis commands like:
SET key value– Set a key-value pairGET key– Retrieve the value for a keyDEL key– Delete a key
Feel free to fork the repository, make changes, and submit a pull request. Contributions are always welcome!
This project is open-source and available under the MIT License.