Apache windows多线程设置

# WinNT MPM
# ThreadsPerChild: constant number of worker threads in the server process
# MaxRequestsPerChild: maximum  number of requests a server process serves
<IfModule mpm_winnt_module>
   ThreadsPerChild   1024
   MaxRequestsPerChild   0
   AcceptFilter http None
   AcceptFilter https None
</IfModule>


#fix Apache winnt_accept: Asynchronous AcceptEx failed
<IfModule mpm_winnt.c>
ThreadsPerChild 150
MaxRequestsPerChild 10000
AcceptFilter http None
AcceptFilter https None
</IfModule>

posted on 2016-05-03 11:59  思静  阅读(416)  评论(0编辑  收藏  举报