我们使用 Tornado 来提供 MongoDB 查询结果。
问题是查询会阻塞 Http 服务器,直到它返回,这会导致响应缓慢,在某些情况下会导致超时。
我们的解决方案是使用 Gevent 异步处理请求,如下所示:
from gevent import monkey; monkey.patch_all()
import gevent
from tornado.web import RequestHandler, asynchronous
class Query(RequestHandler):
@asynchronous
def get(self):
def async_query():
# The following pymongo_client object is created
# at the application and passed in the 'settings' dict.
pymongo_client.do_some_long_query()
self.write('Done')
self.finish()
gevent.spawn(async_query)
这实际上确实有效,在执行查询时释放服务器以接受和处理请求。
我们关心的是“现实世界”中三者的结合。
他们适合在一起吗?还是我们错过了一些可能会破坏实际流量的东西?