我有一个简单的例子:
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")
此请求的时间 = N * zadd 操作的时间。
我可以减少这个请求的时间吗?