让我们从一些例子开始。有库tornado-redis,下面是使用它的示例。
import tornadoredis
import tornado.web
import tornado.gen
c = tornadoredis.Client()
c.connect()
class MainHandler(tornado.web.RequestHandler):
@tornado.web.asynchronous
@tornado.gen.engine
def get(self):
foo = yield tornado.gen.Task(c.get, 'foo')
bar = yield tornado.gen.Task(c.get, 'bar')
zar = yield tornado.gen.Task(c.get, 'zar')
self.set_header('Content-Type', 'text/html')
self.render("template.html", title="Simple demo", foo=foo, bar=bar, zar=zar)
一切都很简单。但我需要编写一个包装类。对我来说编码没有问题,但我认为我误认为异步模式。
我的包装类应该异步调用 redis 类,对吧!?现在我是否还必须以处理程序可以使用Task(异步)调用它的方式异步实现我的类?然后我会有两个异步的地方。保持 Tronado 异步并保持简单的正确方法是什么?
Handler --async call--> MyWrapper --async call--> tronado-redis
或者
Handler --sync call--> MyWrapper --async call--> tronado-redis
或者
Handler --async call--> MyWrapper --sync call--> tronado-redis