Tornado 6.5 Documentation
6.5.1 The Tornado Authors May 22, 2025CONTENTS 1 Quick links 3 2 Hello, world 5 3 Threads and WSGI 7 4 asyncio Integration 9 5 Installation 11 6 Documentation 13 6.1 User’s guide . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 165 7 Discussion and support 255 Python Module Index 257 Index 259 iiiTornado Documentation, Release 6.5.1 Tornado is a Python 5.1 6 Chapter 2. Hello, worldCHAPTER THREE THREADS AND WSGI Tornado is different from most Python web frameworks. It is not based on WSGI, and it is typically run with only one thread per process.0 码力 | 272 页 | 1.12 MB | 2 月前3Tornado 6.5 Documentation
com/tornadoweb/tornado/tree/stable/demos/chat]. Threads and WSGI Tornado is different from most Python web frameworks. It is not based on WSGI [https://wsgi.readthedocs.io/en/latest/], and it is typically run 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 focus of development and most applications should be written written to use Tornado’s own interfaces (such as tornado.web) directly instead of using WSGI. In general, Tornado code is not thread-safe. The only method in Tornado that is safe to call from other threads0 码力 | 437 页 | 405.14 KB | 2 月前3
共 2 条
- 1
相关搜索词