Re: [PHP] Re: how do i allow more than 2 threads of php to run?
Gal Gur-Arie wrote: Rene Veerman wrote: 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? Any chance that you're using session and checking it from the same browser from different tabs (using same session ID)? If the answer is yes. than you might want to look at the following function: session_write_close() http://www.php.net/manual/en/function.session-write-close.php YEEEAH! this fixed it! ur a lifesaver :) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
[PHP] Re: how do i allow more than 2 threads of php to run?
Rene Veerman wrote: > 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? > > Any chance that you're using session and checking it from the same browser from different tabs (using same session ID)? If the answer is yes. than you might want to look at the following function: session_write_close() http://www.php.net/manual/en/function.session-write-close.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php