我们现在正在将我们的代码从旋风转移到龙卷风。以前我们使用@cyclone.web.asynchronous 作为我们的 api 之一,用于在 cyclone 中进行非阻塞异步调用(这样我们就不会阻塞 UI)。在 tornado 中有什么替代方法,@tornado.web.asynchronous 在 tornado 6.1 中不起作用。我的旋风代码是这样的
class ABCHandler(cyclone.web.RequestHandler):
@cyclone.web.asynchronous
def post(self):
some_validation()
# Spawn a thread to import the files and leave the post method
# asynchronous decorator will keep the request open to write the response on,
# once the import is complete
file_handler.start() ---- this is a thread that do all the heavy work and in this method we are
closing the request with self.finish
Class file_handler():
run(self):
{
---do some heavy work, like importing a file
self.importing_a_large_file()
self.set_status(status)
self.write(json_response)
self.finish()
}
它的龙卷风等效方法是什么。
我尝试了各种方法,例如添加 gencouroutine 装饰器,将方法名称更改为异步,但似乎没有任何效果。