I already wrote kind of about same topic a while ago and now interesting real life case makes me to write again
Most Web applications we're working with have single tier web architecture, meaning there is just single set of apache servers server requests and nothing else - no dedicated server for static content, no squid in front nothing else. This architecture is frequently used even for medium size web sites which have millions of page views per day.
Typically single Apache server in this configuration will have rather high MaxClients settings (in hundreds) and would argue web site performance suffers if the value is decreased, only few however understand why they need MaxClients to be set to some high number. …
[Read more]