Solving Concurrent Request Blocking in PHP
June 3, 2013 by Bo Andersen
Making multiple concurrent AJAX requests to a PHP script, for example, may have left you wondering why the requests are not executed in parallel as expected. Rather, the requests are blocking each other. Chances are that this is caused by using sessions within the PHP script.