
libevent服务器编程
美了美了
java python
展开
-
libevent成分
evutilGeneric functionality to abstract out the differences between different platforms' networking implementations.抽象的不同网络平台的网络接口event and event_baseThis is the heart of Libevent. It provid原创 2015-11-23 10:38:14 · 642 阅读 · 0 评论 -
libevent从buffer中获取字符串
static void read_cb(struct bufferevent* bev, void* ctx) { struct evbuffer *input = bufferevent_get_input(bev); struct evbuffer *output = bufferevent_get_output(bev);原创 2015-12-07 10:32:00 · 745 阅读 · 0 评论 -
libevent很好的翻译与解析
Libevent介绍libevent是一个事件触发的网络库,适用于windows、linux、bsd等多种平台,内部使用select、epoll、kqueue等系统调用管理事件机制。著名分布式缓存软件memcached也是libevent based,而且libevent在使用上可以做到跨平台,而且根据libevent官方网站上公布的数据统计,似乎也有着非凡的性能。libevent官方网站转载 2015-12-24 09:09:41 · 5757 阅读 · 0 评论