
Web Server
reesun
这个作者很懒,什么都没留下…
展开
-
WordPress.Com Serves 70,000 Req/Sec And Over 15 Gbit/Sec Of Traffic Using NGINX
This is a guest post of an anonymous sort that may cause a reaction from those overly sensitive to PR, but I think it has a lot of interesting details that are useful enough to pass on...WordPress.c转载 2012-09-27 09:40:18 · 1706 阅读 · 0 评论 -
Apache Prefork和Worker模式的性能比较测试
一、preforkprefork采用预派生子进程方式,用单独的子进程来处理不同的请求。进程之间彼此独立,每个进程只含有一个线程。在"conf/extra/httpd-mpm.conf”中是如下定义的: StartServers 5 MinSpareServers 5 MaxSpareServers 10 Ma原创 2012-09-24 10:19:28 · 1597 阅读 · 0 评论 -
Apache2.0模块开发基础
本博文是总结《Apache模块开发》中的第5章基本说明mod_helloworld是一个非常简单的模块,仅仅完成内容展示工作。但是它却可以展示编写Apache模块的基本框架。基本开发环境及说明我的开发环境是ubuntu 10.04 amd64 server,apache版本是2.2.151、源码安装apache 解压tar zvxf httpd-2.2.15.tar原创 2012-12-06 18:19:49 · 919 阅读 · 0 评论 -
configure: error: newly created file is older than distributed files! 错误处理
出现此编译错误,请检查你的系统时间是否设置有误。。。修改系统时间命令:# date -s 12-03-30 (2012年3月30号)# date -s 10:30:30 (10点30分30秒)# hwclock -w (将当前时间和日期写入BIOS,避免重启后失效)原创 2013-04-23 17:12:15 · 1441 阅读 · 0 评论