我有一个简单的例子:
c = tornadoredis.Client()
c.connect()
class SourceHandler(tornado.web.RequestHandler):
@tornado.web.asynchronous
@tornado.gen.engine
def get(self):
pipe = c.pipeline(transactional=True)
pipe.zadd( 'test1'), 1212, "test" )
pipe.zadd( 'test2'), 1212, "test" )
.....
pipe.zadd( 'testN'), 1212, "test" )
res = yield tornado.gen.Task(pipe.execute)
self.set_header('Content-Type', 'text/html')
self.render("template.html", title="result")
此请求的时间= Zadd操作的N *时间。
我可以减少这个请求的时间吗?
答案 0 :(得分:1)
管道请求是一个事务请求,要求其中的所有操作都作为原子单元执行。语句 - res = yield tornado.gen.Task(pipe.execute)
将一直等到执行所有zadd
语句,直到它将执行返回到你的get(...)函数。
您可以减少执行时间的唯一方法是删除火灾中的gen.engine
位并忘记模式,尽管您将不再拥有任何响应信息。
class SourceHandler(tornado.web.RequestHandler):
@tornado.web.asynchronous
def get(self):
pipe = c.pipeline(transactional=True)
pipe.zadd( 'test1'), 1212, "test" )
pipe.zadd( 'test2'), 1212, "test" )
...
pipe.execute()
# of course you no longer have the response information...
...old code...