三个问题如下:
我正在使用Apache2.4
在引擎处理apache日志中的请求之前,是否有办法知道请求已进入队列多长时间?由于只有%T和%D可以显示服务请求的时间。
我计划有1000个并发请求。我的配置正确并且遵循最佳做法吗?
<IfModule mpm_prefork_module> ServerLimit 1000 StartServers 2 MinSpareServers 2 MaxSpareServers 5 MaxRequestWorkers 1000 MaxConnectionsPerChild 100 </IfModule>
KeepAlive On MaxKeepAliveRequests 500 KeepAliveTimeout 15
请帮助
谢谢