当前位置: 代码迷 >> 互联网 >> tornado: 一次request从开始到完了
  详细解决方案

tornado: 一次request从开始到完了

热度:844   发布时间:2013-02-26 00:00:00.0
tornado: 一次request从开始到结束

一个简单的调用顺序(只包含了重要的方法):

On IOLoop.READ triggered:

1. TCPServer._handle_connection

2. HTTPServer.handle_stream

3. HTTPConnection.__init__

4. HTTPConnection._on_headers

5. HTTPConeection._on_request_body

6. Application.__call__

7. RequestHandler._execute

8. RequestHandler(or anyother child of it)'s get/post/delete/head/... method

9. RequestHandler.finish

?

  相关解决方案