请教Apache2.2 最大连接数问题

请教Apache2.2 最大连接数问题

# ThreadsPerChild: constant number of worker threads in the server process
# MaxRequestsPerChild: maximum  number of requests a server process serves
ThreadsPerChild 250
MaxRequestsPerChild  0

这是httpd.conf默认的值

请问大家.2万IP的论坛站.ThreadsPerChild 250 这个值该设置成多少????


下面这段是我手动添加到httpd.conf里面的. 正确吗??
<IfModule mpm_prefork_module>
    StartServers          10
    MinSpareServers       10
    MaxSpareServers      15
    MaxClients          1500
    MaxRequestsPerChild   10000
</IfModule>

MaxRequestsPerChild  0和 mpm_prefork_module里面的 MaxRequestsPerChild   10000 冲突吗?是否去掉MaxRequestsPerChild  0?

<IfModule mpm_prefork_module>
StartServers 10
MinSpareServers 10
MaxSpareServers 15
ServerLimit 2000
MaxClients 1500
MaxRequestsPerChild 0
</IfModule>
# ThreadsPerChild: constant number of worker threads in the server process
# MaxRequestsPerChild: maximum  number of requests a server process serves
ThreadsPerChild 250
MaxRequestsPerChild  0 这两个代码个禁止吗?

斑竹,我用的也是apche2.2.2,我在编译的时候没有设置prefork.c哪个文件,而是在httpd-mpm-conf这个文件里面这样设置:
<IfModule mpm_prefork_module>
ServerLimit         2000
StartServers        15
MinSpareServers     15
MaxSpareServers     20
MaxClients          2000
MaxRequestsPerChild 10000
</IfModule>

也重新启动了apache,可是我观察到apche的最大连接数还是256,根本没起作用?
是不是2.2的配置和2。0的配置不一样? 2。2必须要编译原文件吗?
哪位大哥可以帮助一下楼上的小弟?
谢谢!