C++,python,热爱算法和机器学习
全部博文(1214)
发布时间: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.........【阅读全文】
发布时间:2015-01-04 11:49:07
原文地址:http://youngsterxyf.github.io/2013/01/04/Decorators-and-Functional-Python/2013-01-04 五By youngsterxyf原文:Decorators and Functional Python译者:youngsterxyf装饰器是Python的一大特色。除了在语言中的原本用处,还帮助我们以一种有趣的方式(函数式)进行思考。.........【阅读全文】
发布时间:2015-01-03 13:54:48
原文地址:http://blog.fity.cn/post/377/2013-05消息中间件是一种由消息传送机制或消息队列模式组成的中间件技术,利用高效可靠的消息传递机制进行平台无关的数据交流,并基于数据通信来进行分布式系统的集成。目前业界有很多的MQ产品,像RabbitMQ、ActiveMQ、ZeroMQ等都是极好的消息中间件,但是我们在项目中该选择哪.........【阅读全文】
chinaunix网友2009-10-12 16:19
你好,你在Google Code上放的sg2fcitx的mainme.c源代码我下载编译会出现段错误。请问你的编译环境是什么?GCC版本是多少? 谢谢。