This is a starting point for Rust solutions to the "Build Your Own Redis" Challenge.
In this challenge, you'll build a toy Redis clone that's capable of handling
basic commands like PING, SET and GET. Along the way we'll learn about
event loops, the Redis protocol and more.
- Ensure you have
cargo (1.54)installed locally - Run
./your_program.shto run your Redis server, which is implemented insrc/main.rs. This command compiles your Rust project, so it might be slow the first time you run it. Subsequent runs will be fast. - Commit your changes and run
git push origin masterto submit your solution to CodeCrafters. Test output will be streamed to your terminal.