Tornado 6.5 Documentation
clients . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 84 6.4 Asynchronous networking . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 102 257 Index 259 iiiTornado Documentation, Release 6.5.1 Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed. By using non-blocking network I/O, Tornado wait() if __name__ == "__main__": asyncio.run(main()) This example does not use any of Tornado’s asynchronous features; for that see this simple chat room. 5Tornado Documentation, Release 6.5.1 6 Chapter0 码力 | 272 页 | 1.12 MB | 2 月前3Tornado 6.5 Documentation
Tornado [https://www.tornadoweb.org] is a Python web framework and asynchronous networking library, originally developed at FriendFeed [https://en.wikipedia.org/wiki/FriendFeed]. By using non-blocking __name__ == "__main__": asyncio.run(main()) This example does not use any of Tornado’s asynchronous features; for that see this simple chat room [https://github.com/tornadoweb/tornado/tree/stable/demos/chat] with only one thread per process. See the User’s guide for more on Tornado’s approach to asynchronous programming. While some support of WSGI is available in the tornado.wsgi module, it is not a focus0 码力 | 437 页 | 405.14 KB | 2 月前3Rust 程序设计语言 简体中文版 1.85.0
Nicholas Matsakis 和 Aaron Turon 6/562Rust 程序设计语言 简体中文版 简介 注意:此书的英文原版与 No Starch Press 出版的《The Rust Programming Language》纸质版和电子版一致。 欢迎阅读《Rust 程序设计语言》,这是一本关于 Rust 的入门书籍。Rust 程序设计语言能帮助 你编写更快、更可靠的软件。在编程语言设计中,高层的工程学与底层的控制往往是难以兼得 安装程序也自带一份文档的本地拷贝,可以离线阅读。运行 rustup doc 在浏览器中查看本地 文档。 任何时候,如果你拿不准标准库中的类型或函数的用途和用法,请查阅应用程序接口 (application programming interface,API)文档! 文本编辑器和集成开发环境(Integrated Development Environments, IDE) 本书不会假设你使用何种工具来编写 Rust 277/562Rust 程序设计语言 简体中文版 函数式语言特性:迭代器与闭包 Rust 的设计灵感来源于很多现存的语言和技术。其中一个显著的影响就是函数式编程 (functional programming)。函数式编程风格通常包含将函数作为参数值或其他函数的返回 值、将函数赋值给变量以供之后执行等等。 本章我们不会讨论函数式编程是或不是什么的问题,而是展示 Rust 的一些在功能上与其他被0 码力 | 562 页 | 3.23 MB | 10 天前3
共 3 条
- 1