I recommend it to be part of CustomBuild for Apache 2.2.x-2.2.11 (and to be tested on 2.0.x). Of course without both "ap_log_error" functions present on the patch, which are there only for debugging and shouldn't be set in a production server. My server-wide error log is filling ten times faster than before because of those messages.
The downside is that if a server is misconfigured and the amount of concurrent users often approaches the number of maximum users connected, the Timeout value will dynamically reach low values and any user with very slow Internet links is going to have some problems connecting.
If, instead, a server is configured to have enough (+30%) idle listening processes/threads there won't be absolutely no problem. This is the case for most users with a default config.
Let's make an example: the default Timeout of a CustomBuild Apache2 install is 60 seconds and the MaxUsers is 450. If there are 405 concurrent users most of the time (only 10% idle listening processes/threads), the timeout will be 3.75 seconds (Timeout/16) for the 405th user and if his browser takes more than that to download a single page object, it will timeout. The solution in this case would be of course to raise the Timeout or MaxUsers value.