Let's say I have a PHP script which running a long process which required 10 minutes to complete.
If I execute the script via browser twice, both request will run concurrently or the second request will stay in server queue until the first request complete?
I know the pthreads extension which able to process request concurrently but my server not support that.