|
You are here |
kobzol.github.io | ||
| | | | |
tokio.rs
|
|
| | | | | Tokio is a runtime for writing reliable asynchronous applications with Rust. It provides async I/O, networking, scheduling, timers, and more. | |
| | | | |
blog.yoshuawuyts.com
|
|
| | | | | [AI summary] The article explores the capabilities and benefits of async Rust, emphasizing its unique features such as concurrency, cancellation, and control over execution. It discusses how async Rust separates concurrency from parallelism, enabling finer control and optimization, especially for latency-oriented workloads. The text also highlights the importance of the ecosystem, noting that many network-related libraries use async Rust, which influences the choice of libraries for developers. The conclusion reinforces that async Rust provides essential tools for managing execution and concurrency that are not available in non-async environments, making it a preferred choice for certain applications. | |
| | | | |
developerlife.com
|
|
| | | | | This tutorial, video, and repo are a deep dive into the concept of cancellation safety in async code using Tokio and Rust. It affects the tokio::select! macro, and what happens to the racing Futures that don't win. The examples provided here, along with the video, will go over both code that is is cancellation safe and code that is not. These examples reflect real-world patterns, and are a generalized form of them. | |
| | | | |
swatinem.de
|
|
| | | |||