Apache最大并发量设置
1.在httpd.conf文件中修改 Include conf/extra/httpd-mpm.conf 开启
2.确定当前Apache是什么MPM模式 进入到cmd 输入httpd.exe -l
3.修改 httpd_mpm.conf ThreadsPerChild设置
4.重启Apache 测试
Linux下,一般采用的MPM模式是 perfork
StartServers 5 /*预先开5个进程*/
MinSpareServers 5 /*最小空闲*/
MaxSpareServers 10 /*最大空闲*/
MaxRequestWorkers 250 /*并发量 最大 1000左右*/
MaxConnectionsPerChild 0 /*为0进程不死*/
合理配置 5、5、10、1500、1000、0
网站pv值百万 5、5、10、2500、2000、0
- PHP的缓存机制
- Apache压力测试工具