再次阅读 Tornado 中的 coroutine 代码

2015-12-30
阅读 4 分钟
3k
yield and generator will be the front knowledge of this article. And you should also have some sense of epoll/kqueue and callback style. Let's enjoy the source code of the implement of coroutine.

Tornado 里的协程

2014-03-06
阅读 5 分钟
7.8k
在使用Tornado的时候经常会写这样的代码: {代码...} 每次看都觉得像魔法, 于是今天看了一下tornado的代码来瞅瞅发生了什么. 首先,我们找到这段代码在哪里被@gen.coroutine装饰 {代码...} 下面进入Runner, 直接看run方法, 对于Py来说, 这函数真是长的出奇, 缩进也用了很多...: {代码...} 暂时看懂了这些.关于发送一个None...