This is my solution with Rust🦀 to the "Build Your Own Redis" Challenge.
In this challenge, I build a toy Redis clone that's capable of handling
basic commands like PING, SET and GET. Along the way I have learned about
event loops, the Redis protocol, tokio and async Rust, and more.
sudo apt install cargo
cargo install just| Description | Command |
|---|---|
| 🧪 Run tests | just test |
| 👁️ Run tests in watch mode | just test_watch |
| 🚀 Run server | just run |
