python
文章平均质量分 69
zhaoxia_guo
这个作者很懒,什么都没留下…
展开
-
同步异步 阻塞非阻塞
参考:http://apps.hi.baidu.com/share/detail/21570805# 讲的很不错,第一次看的时候没有深入理解,今天有了自己的理解,记录一下。 同步/异步和阻塞/非阻塞其实是没有直接联系的,虽然表面上看起来有一定相似的效果。 对于同步和异步来说,它是编码的一种的模型,可以运用回调函数callback来实现,它只和你的application有关。而阻塞非阻原创 2011-10-25 17:30:54 · 565 阅读 · 0 评论 -
Tornado: 1. 流程分析
转载出自:http://www.rainsts.net/article.asp?id=1008 在 Linux 下凡是和 epoll 沾边的基本都是好东西,Tornado 也算一个新星。 Tornado is an open source version of the scalable, non-blocking web server and tools that power F转载 2011-10-31 15:19:39 · 2555 阅读 · 1 评论 -
Tornado: 2. 源码分析 (3)
转载出自:http://www.rainsts.net/article.asp?id=1013 3. RequestHandler 这是我们使用 Tornado 打交道最多的一个类了。 class RequestHandler(object): """Subclass this class and define get() or post() to make a handle转载 2011-11-01 18:09:49 · 2789 阅读 · 0 评论 -
python 定时器
1. Timer def hello(name): print 'hello world, i am %s, Current time: %s' % (name, time.time()) hello = partial(hello, 'guo') t = Timer(3, hello) t.start() 但是只执行一次,想办法做成一个真正的定时器: def h原创 2011-12-02 15:57:53 · 8368 阅读 · 1 评论