ThreadsPerChild 150
MaxRequestsPerChild 10000
Win32DisableAcceptEx
配置之后问题依然未得到解决,最终查看Apache的手册(PS:查看最新的Apache2.4的手册),看到官方的如下解释:
The default values on Windows are:
AcceptFilter http data
AcceptFilter https data
Window's mpm_winnt interprets the AcceptFilter to toggle the AcceptEx() API, and does not
support http protocol buffering. There are two values which utilize the Windows
AcceptEx() API and will recycle network sockets between connections.
data waits until data has been transmitted as documented above, and
the initial data buffer and network endpoint addresses are all retrieved from
the single AcceptEx() invocation. connect will use the AcceptEx()
API, also retrieve the network endpoint addresses, but like none the connect option does not wait for the initial data
transmission.
On Windows, none uses accept() rather than AcceptEx() and will
not recycle sockets between connections. This is useful for network adapters
with broken driver support, as well as some virtual network providers such as
*** drivers, or spam, virus or spyware filters.
在配置文件中添加如下信息:
AcceptFilter http none
AcceptFilter https none 最终解决问题