
nginx剖析
qq_37058442
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
nginx内存池c++代码及测试
#ifndef _NGX_POOL #define _NGX_POOL #define MAXSIZEPOOL 4096 #include using namespace std; class NgxPoitem { public: NgxPoitem(size_t size) :next(NULL), large(NULL) { try { data = reinterpre转载 2017-09-10 20:57:53 · 460 阅读 · 0 评论 -
nginx 事件驱动异步AIO使用情况
https://blog.youkuaiyun.com/lyh__521/article/details/50300379 #include <unistd.h> #include <stdio.h> #include <fcntl.h> #include <sys/stat.h> #include <libaio.h> #include <e...原创 2018-05-19 14:44:18 · 935 阅读 · 0 评论