News:

Tekforums.net - The improved home of Tekforums! :D

Main Menu

PHP/Apache - Concurrent requests?

Started by GroovyPigThing, March 28, 2006, 09:53:07 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

GroovyPigThing

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

Mardoni

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.

GroovyPigThing

cheers,

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