- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有一段代码如下:
@tornado.web.stream_request_body
class DownloadHandler(SecureHandler):
executor = ThreadPoolExecutor(50)
@tornado.web.authenticated
@tornado.gen.coroutine
@tornado.gen.asynchronous
def post(self):
# ...
path = yield self.down_load(fname)
self.set_header("Content-Type", "application/octet-stream")
self.set_header("Content-Disposition", "attachment;filename=%s" % fname)
self.generator = self.read_file(path)
tornado.ioloop.IOLoop.instance().add_callback(self.loop)
@run_on_executor
def down_load(self, fname):
# download a file named `fname` from other website
# store it in a temp file at `path`
# ...
return path
def loop(self):
try:
data = self.generator.next()
self.write(data)
self.flush()
tornado.ioloop.IOLoop.instance().add_callback(self.loop)
except Exception as e:
traceback.print_exc()
self.finish()
def read_file(self, fname):
with open(fname, 'rb') as f:
while True:
data = f.read(1024 * 1024 * 8)
if not data
break
yield data
如果 asynchronous 和 gen.coroutine 的顺序如我的代码所示,则可以正常工作。
但是如果我调换它们的顺序,客户端只能收到8MB的数据。 traceback.print_exc()
打印 finish() 调用了两次。可能是由于在没有@asynchronous 装饰器的情况下使用异步操作导致的。
那么我的问题是,为什么这两个装饰器的顺序很重要,选择顺序的规则是什么?
最佳答案
顺序很重要,因为 @asynchronous
查看 @gen.coroutine
返回的 Future
,并调用 finish
当协程返回时为您服务。自 Tornado 3.1 以来,@asynchronous
和 @gen.coroutine
的组合已不再必要,也不鼓励;在大多数情况下,您应该单独使用 @gen.coroutine
。
但是,您在此处展示的示例有点奇怪 - 它以不太有效的方式混合了协程和回调样式。协程在完成之前返回,并将剩余的工作留给回调链。这实际上类似于 @asynchronous
装饰器对非协程函数所做的事情,尽管它不适用于两个装饰器之间的交互。这里最好的解决方案是使 loop()
也成为协程:
@gen.coroutine
def loop(self):
for data in self.generator:
self.write(data)
yield self.flush()
然后你可以用yield self.loop()
调用它,协程就可以正常工作了。您不再需要显式调用 finish()
,或使用 @asynchronous
装饰器。
关于python - 为什么异步和 gen.coroutine 的顺序在 Tornado 中很重要?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27393059/
根据一些谷歌搜索,我安装了以下错误处理程序。然而,似乎返回 http 500 的 python 异常并没有被这些东西捕获,尽管 404 是这样。通过我在下面的代码中留下的打印语句,我可以看到它没有命中
我刚刚意识到 WebSocketHandler.write_message() 返回一个 Future。我以前没有在我的函数中产生过这个函数: @tornado.gen.coroutine
这是我的 Tornado 文件:: from tornado.wsgi import WSGIContainer from tornado.ioloop import IOLoop from torn
class MainHandler(BaseHandler): @tornado.web.authenticated def get(self): self.rende
我正在尝试使用 AsyncHTTPTestCase 测试 Tornado .我想测试标有 @tornado.web.authenticated 注释的处理程序。因为此处理程序需要身份验证,所以我们必须
我正在使用 Tornado Web Server (版本 4.1)使用 Python 2.7 创建 REST Web 应用程序。我的请求处理程序之一 (web.RequestHandler) 使用多部
我想知道tornado 的内部工作流程,并且看过this article ,很好,但我就是想不通 ioloop.py里面有这样一个函数 def add_handler(self, fd, handle
如何遍历从 Python/Tornado 处理程序传递到 Tornado 模板的字典? 我试过 {% for key, value in statistics %}
我有一个 Tornado 后端,为 Angular 前端提供服务。更新数据库时,tornado api 不会获取更新的数据。它仅在我重新启动服务器后出现。有人可以帮我解决这个问题吗?我希望获取的数据能
我尝试使用自定义的 WSGIContainer 来处理异步操作: from tornado import httpserver, httpclient, ioloop, wsgi, gen @gen.
from tornado.web import RequestHandler class HelloWorldHandler(RequestHandler): def get(self):
Pylint 遇到 @tornado.web.authenticated 时崩溃 class Handler1(tornado.web.RequestHandler): def get(sel
经过 tornado.gen documentation有人可以帮我理解 tornado.gen.coroutine 和 tornado.gen.engine 之间的确切区别 最佳答案 正如 gen.
代码如下: from tornadoredis import Client from tornado.ioloop import IOLoop from tornado.gen import coro
我有一个 tornado.websocket.WebSocketHandler 的子类。在该类中,我有一个方法使用 Django ORM 从子类模型中获取用户:django.contrib.auth.
我是 ssl 之类的新手,我已经使用 openssl 生成了自签名证书。 openssl req -newkey rsa:2048 -nodes -keyout key.pem -x509 -days
我已经从 tornado 4.2 移动到 tornado 6.0.3,我得到了错误 AttributeError:模块“tornado.web”没有属性“异步” 根据 tornado v6 seems
我一直在关注此 ( https://developer.ibm.com/tutorials/se-distributed-apps-zeromq-part2/) 教程,以设置使用 CurveZMQ 加
我在使用tornado-celery整合tornado和celery时,出现错误:``` traceback (most recent call last): File "/usr/local/l
我正在使用 Tornado 与 twitter 等第三方进行身份验证。 我的登录处理程序看起来像这样 class AuthLoginHandler(BaseHandler, tornado.auth.
我是一名优秀的程序员,十分优秀!