cherokee
watter1985
这个作者很懒,什么都没留下…
展开
-
cherokee 插件加载器源码剖析
cherokee 服务器的绝大部分功能都是用插件实现的, 因此要理解cherokee的源码首先需要理解的就是cherokee的插件. 插件相关的主要结构体有以下几个. // 插件, 对应于每个插件 typedef struct { cherokee_plugin_type_t type; void *instance; ...2011-12-23 18:27:02 · 172 阅读 · 0 评论 -
cherokee, nginx, boost.asio 中的Leader Follower 模式
LeaderFollower模式是一种高效的多线程IO多路分离和调度模式。 http://www.kircher-schwanninger.de/michael/publications/lf.pdf 实现高性能的多线程应用程序是具有挑战性的任务,Leader Follower主要解决了以下几个方面的问题: 1. 有效复用IO句柄和线程: 实现高性能多线应用需要并发处理大量的事件,例...原创 2012-10-15 20:46:49 · 215 阅读 · 0 评论