With ASP.NET I've found that request are processed sequentially, one at
a time, at least on a server with one CPU. If one request blocks for
some reason, maybe on a long database query, then all users must wait
until it completes, for their request to process.
This leaves me wondering about PHP running on IIS and Window. Does this
hold true for PHP also?
What about PHP on Unix? Does this allow true simultaneous processing of
all requests when the server has a single CPU?
Thanks for your help.
a time, at least on a server with one CPU. If one request blocks for
some reason, maybe on a long database query, then all users must wait
until it completes, for their request to process.
This leaves me wondering about PHP running on IIS and Window. Does this
hold true for PHP also?
What about PHP on Unix? Does this allow true simultaneous processing of
all requests when the server has a single CPU?
Thanks for your help.
Comment