C++,python,热爱算法和机器学习
全部博文(1214)
发布时间:2015-01-05 21:42:47
原文地址:http://effi2.me/blog/2014/07/06/greenlet/Jul 6th, 2014“greenlet”是一个小而独立的虚拟线程,下面是一个小例子来解释它的用法。 from greenlet import greenletdef test1(): print 12 gr2.switch() print 34def test2(): print 56 gr1.switch() print 78gr1 =.........【阅读全文】
发布时间:2015-01-04 22:42:52
原文地址:http://blog.csdn.net/yueguanghaidao/article/details/24281751一直对gevent运行流程比较模糊,最近看源码略有所得,不敢独享,故分享之。gevent是一个高性能网络库,底层是libevent,1.0版本之后是libev,核心是greenlet。gevent和eventlet是亲近,唯一不同的是eventlet是自己实现的事件驱动,而gevent.........【阅读全文】
发布时间:2015-01-04 22:16:38
遇到IO阻塞,就把控制权switch给 main thread coroutine。main thread coroutine将主控权排程给非IO等待的coroutine。当IO完成,gevent内部将该coroutine标记为可执行。原文地址:http://blog.ez2learn.com/2010/07/17/talk-about-coroutine-and-gevent/這篇文章是要大略介紹一下coroutine和Python的相關應用的函.........【阅读全文】
发布时间:2015-01-04 12:40:34
Gevent can spawn a co-routine: g1 = gevent.spawn(function)After the function is been called, g1 has its return value: g1.valueIf we want to have a callback with g1.value: g1.rawlink(callback)This callback will be called before join: gevent.joinall([g1])Here is the expirement about this con.........【阅读全文】
chinaunix网友2009-10-12 16:19
你好,你在Google Code上放的sg2fcitx的mainme.c源代码我下载编译会出现段错误。请问你的编译环境是什么?GCC版本是多少? 谢谢。