Rene Veerman schreef:
> Jochem Maas wrote:
>> Rene Veerman schreef:
>>  
>>> i'm getting freezes for the 3rd to Nth concurrent request on my
>>> homeserver (got root, on debian4 + apache2).
>>> how can i allow more threads? like 50 or so?
>>>     
>>
>> probably need to fix the apache.conf to allow more concurrent child
>> processes.
>>
>>   
> 
> K, how do i do that?
> 
> I looked at the apache2 docs but couldnt find the setting to tweak
> 

look for these (these just happen to be the settings for my local dev install):

    StartServers             1
    MinSpareServers          1
    MaxSpareServers          2
    MaxClients              16
    MaxRequestsPerChild   1000

i'd imagine MaxClients is the one you will need to 'up'

also STW for 'apache prefork MPM'


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to