简体   繁体   中英

Does initialize in tornado.web.RequestHandler get called every time for a request/

tornado.web.RequestHandler类中有一个initialize方法,每次有请求时都会调用它吗?

Yes, tornado calls initialize for each request.

If you want to share state between requests(like db connection) - store it in self.application .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM