index.md (447B)
1 --- 2 title: "Exercise: Tokio Tutorial — My Redis" 3 tags: [exercise, rust, async, tokio, networking] 4 --- 5 6 A minimal Redis-like server and client built while following the 7 [Tokio tutorial](https://tokio.rs/tokio/tutorial). Covers async tasks, TCP 8 sockets, shared state, and Tokio's channel primitives. 9 10 > [!info] Source Code: 11 > [exercises/tokio-tutorial/my-redis](https://github.com/ling0x/notes/tree/main/content/exercises/tokio-tutorial/my-redis)