Apache-如何查看请求进入队列的时间

时间:2018-11-20 11:58:45

标签: queue httpd.conf keep-alive preforking

三个问题如下:

我正在使用Apache2.4

  1. 在引擎处理apache日志中的请求之前,是否有办法知道请求已进入队列多长时间?由于只有%T和%D可以显示服务请求的时间。

  2. 我计划有1000个并发请求。我的配置正确并且遵循最佳做法吗?

<IfModule mpm_prefork_module>
   ServerLimit      1000
   StartServers      2
   MinSpareServers   2
   MaxSpareServers  5
   MaxRequestWorkers 1000
   MaxConnectionsPerChild  100
</IfModule>
  1. 我在第2个中设置了1000个并发请求,但是我的MaxKeepAliveRequests是500个,将兑现哪个请求?还是两者都指的是不同的设置?
KeepAlive On
MaxKeepAliveRequests 500
KeepAliveTimeout 15

请帮助

谢谢

0 个答案:

没有答案