For example if we have a certain php file on server getProducts.php. Does it get interrupted when multiple users request it at the same time?
for example if a user asks for details about product A, and another user about product B, and another user about a product C, etc…will php be interrupted? or it’s a self generated threading system that works and respond upon and to each request?
Thank you!
If you are using apache, it’s a concurrent system. That means each request will be handled in parallel so your php script will not be interrupted.