Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rustcn-org/async-book
该书是中文 Rust 教程 <<Rust语言圣经>> 中的镜像专题,高质量手翻 Asynchronous Programming in Rust, 深入讲述了如何编写 Rust 高并发异步程序
https://github.com/rustcn-org/async-book
Last synced: 3 months ago
JSON representation
该书是中文 Rust 教程 <<Rust语言圣经>> 中的镜像专题,高质量手翻 Asynchronous Programming in Rust, 深入讲述了如何编写 Rust 高并发异步程序
- Host: GitHub
- URL: https://github.com/rustcn-org/async-book
- Owner: rustcn-org
- Created: 2022-04-05T04:23:23.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-04-05T04:27:06.000Z (almost 3 years ago)
- Last Synced: 2024-08-07T11:11:14.344Z (6 months ago)
- Size: 41 KB
- Stars: 130
- Watchers: 4
- Forks: 17
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-rust-zh - Rust 异步编程指南
README
# Asynchronous Rust Programming
中文书名<< Rust 异步编程指南>>,高质量手翻官方的 Async Book, 是一本非常好的异步编程学习使用教程。关于异步编程,Tokio 也是绕不过去的坎,感兴趣的同学可以看看[Tokio异步编程指南](https://github.com/sunface/tokio-course)。> 本书由 [RustTT 翻译小组](https://rusttt.com) 进行翻译,并对内容进行了一些调整,更便于国内读者阅读。
>
> 英文原文 [Asynchronous Programming in Rust](https://rust-lang.github.io/async-book/)## 目录
- [async编程入门](async/getting-started.md)
- [底层探秘: Future执行与任务调度](async/future-excuting.md)
- [定海神针Pin和Unpin](async/pin-unpin.md)
- [async/await和Stream流处理](async/async-await.md)
- [同时运行多个Future](async/multi-futures-simultaneous.md)
- [一些疑难问题的解决办法](async/pain-points-and-workarounds.md)
- [实践应用:Async Web服务器](async/web-server.md)