Author Topic: PHP/Apache - Concurrent requests?  (Read 2835 times)

PHP/Apache - Concurrent requests?
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

  • Offline Mardoni

  • Posts: 2,636
  • Global Moderator
  • Hero Member
  • On the Sofa, probably ;)
Re:PHP/Apache - Concurrent requests?
Reply #1 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.

PHP/Apache - Concurrent requests?
Reply #2 on: March 28, 2006, 11:56:08 AM
cheers,

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

0 Members and 1 Guest are viewing this topic.