linux下apahce2 httpd.conf文件的配置问题 

环境 linux+apache2+php
启动后 在linux进程中/usr/local/apache2/bin/httpd -k start的进程有5个,但是随着时间的推移就会增加很多 最多到50个,这个时候我的WEB程序非常慢,打开网页慢.我在httpd.conf里的配置是
<IfModule prefork.c>
StartServers        5
MinSpareServers      5
MaxSpareServers    10
MaxClients        150
MaxRequestsPerChild  100000
</IfModule>

难道这样的配置 还不行 如果让服务器运行正常而且快速呢 谢谢各位神仙了