Tekforums

Chat => Entertainment & Technology => Topic started by: GroovyPigThing on March 28, 2006, 09:53:07 AM

Title: PHP/Apache - Concurrent requests?
Post by: GroovyPigThing on March 28, 2006, 09:53:07 AM
Does anyone know how two concurrent requests to a php script will be handled by apache? Will they run sequentially ie. One runs to completion before the next one begins?

Ta
Title: Re:PHP/Apache - Concurrent requests?
Post by: Mardoni on March 28, 2006, 10:34:43 AM
There are a number of factors that impact on this question but in general; they run asynchronously.

This can be limited by the maxmium number of allowed connections (both on the server and per client) or by using a seriliazation object.
Title: PHP/Apache - Concurrent requests?
Post by: GroovyPigThing on March 28, 2006, 11:56:08 AM
cheers,

Ive worked out how to do what I wanted to now anyway :D