我以前用的是WinXP+IIS,后来得知xp的IIS只支持10个并发连接
现在换成WinXP+Apache
# WinNT MPM
# ThreadsPerChild: constant number of worker threads in the server process
# MaxRequestsPerChild: maximum number of requests a server process serves
<IfModule mpm_winnt.c>
ThreadsPerChild 250
MaxRequestsPerChild 0
</IfModule>
这里面没有啊