Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 514 Bytes

README.md

File metadata and controls

23 lines (15 loc) · 514 Bytes

async-rust-example

Example of async programming in Rust, written for this blog post.

Server

Run the server with:

$ cargo run --release --bin server

Clients

Then run the different clients with:

$ cargo run --release --bin client_synchronous
$ cargo run --release --bin client_async
$ cargo run --release --bin client_synchronous_parallel

While the echo server is running.