mirror of https://github.com/sunface/rust-course
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
537 B
9 lines
537 B
3 years ago
|
# Tokio 使用指南
|
||
|
|
||
3 years ago
|
在上一个章节中,我们提到了 Rust 异步编程的限制,其中之一就是你必须引入社区提供的异步运行时,其中最有名的就是 `tokio`。
|
||
|
|
||
|
在本章中,我们一起来看看 `tokio` 到底有什么优势,以及该如何使用它。
|
||
|
|
||
3 years ago
|
> 本章在内容上大量借鉴和翻译了 tokio 官方文档[Tokio Tutorial](https://tokio.rs/tokio/tutorial), 但是重新组织了内容形式并融入了很多自己的见解和感悟,给大家提供更好的可读性和知识扩展性
|
||
|
|