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>

原文地址:https://www.cnblogs.com/krisy/p/5454460.html