我正在尝试在 Tornado 中实现长拉客户端,它与异步 Tornado 服务器交互。
发生的事情是两件事之一:
- 客户端超时,或
- 客户端在完成整个后台进程后立即接收所有消息,类似于阻塞消息
这是我使用的客户端:
from tornado import ioloop
from tornado import httpclient
print "\nNon-Blocking AsyncHTTPClient"
import tornado.ioloop
def async_call(response):
if response.error:
response.rethrow()
print "AsyncHTTPClient Response"
ioloop.IOLoop.instance().stop()
http_client = httpclient.AsyncHTTPClient()
http_client.fetch("http://localhost:9999/text/", async_call)
ioloop.IOLoop.instance().start()
这是编写长轮询/彗星客户端的正确方法吗?
对于那些回答在 Tornado 中提供示例异步服务器的人,我也将不胜感激,因为可能是我错误地编写了彗星 Tornado 服务器......我对整个长轮询过程有点陌生。