全部博文(921)
发布时间:2016-03-17 10:39:19
gevent 比起其他框架(比如tornado,twisted)的一个巨大优势就是:用同步的方法(自然没有回调函数)写异步应用,因为同步的方式更接近开发人员的编程思维。gevent可以用一句话向pythoner阐述:使用多路IO复用对文件描述符的事件监听,从而撬动协程的“透明”切换。这句话说起来容易,但是阐述起来就复杂些:.........【阅读全文】
发布时间:2016-03-12 15:05:58
# -*- encoding: utf-8 -*-"""通过tasklet构造的对象只是加入调度队列,必须等待schedule,真正执行队列即执行可以通过四个方法:stackless.run(), stackless.schedule(),channel.send(), channel.receive()任何新建的tasklet必须等待schedule方法来调度,.........【阅读全文】
发布时间:2016-03-10 17:37:13
Twisted as an Erlang nodeTwisted as an Erlang nodePrequesitesIn this document, we'll assume that you have a basic knowledge of Twisted (how to create a client, how to create a server, what is the protocol/factory mechanism, what is a deferred), and of Erlang (w.........【阅读全文】