tokio

Tokio - Rust Concurrency (draft)

I started to discover Tokio framework. https://tokio.rs/tokio/tutorial You can find all official tutorial code at here. What is Tokio ultimately Asynchronous Rust code does not run on its own, so you must choose a runtime to execute it. Tokio is an asynchronous runtime for the Rust programming language. Handson tutorial with Redis-clone We’ll run a clone of Redis server. While running the redis server, your prompt will be blocked. For someone who doesn’t know about Redis, it is a key-value store server, and you need to follow a redis protocol on TCP/IP.