<div dir="ltr">Hi<br><div class="gmail_extra"><br><br><div class="gmail_quote">On 16 April 2014 09:58, justink101 <span dir="ltr"><<a href="mailto:nginx-forum@nginx.us" target="_blank">nginx-forum@nginx.us</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">Maxim.<br>
<br>
Even after disabling SPDY and restarting nginx, still seeing the same<br>
behavior with requests blocking if another single request is outstanding in<br>
another tab.</blockquote><div><br></div><div>Are you using php by any chance?  I had a problem showing these exact same symptoms last week.  By default, php writes to files for sessions.  When a session is started, the file is locked by the current process and is only released at the end of the request or if session_write_close() is called.  This will cause any requests in the same session to hang until the first completes.  The process in this instance that is blocking is php and not nginx.</div>
<div><br></div><div>We got around this by storing the session in Redis instead of files.</div><div><br></div><div>Cheers,</div><div>Lee </div></div><br></div></div>