如果用户打开其他浏览器并登录(这将为该用户启动新会话),则可能会出现并发请求.我的问题是:有没有一种配置FastCGI/IIS7的方法,该方法将允许来自同一用户会话的多个并发请求?如果没有,是否有其他方法可以做到这一点?解决方案我似乎不走运,至少在Windows上的FastCGI下运行PHP: PHP FastCGI并发请求 Caveat: I realize this is potentially a server configuration question, but I thought there might be a programmatic answer, which is why I am posting here...Running PHP on Apache, our users were able to issue multiple concurrent requests (from different tabs in the same browser, for example).Since moving to FastCGI under IIS, this is no longer the default behavior. Now, when a user starts a request to the server and the browser is waiting for a response, if they open a new tab and start another request, the new request is not processed by IIS until the previous request is completed by IIS.If the user opens a different browser and logs in (which starts a new session for that user), concurrent requests are possible.My question is: is there a way to configure FastCGI/IIS7 that will allow multiple concurrent requests from the same user session? If not, is there an alternative that would allow this? 解决方案 It looks like I'm out of luck, at least running PHP under FastCGI on Windows: PHP FastCGI Concurrent Requests 这篇关于IIS7上的FastCGI ...来自同一用户会话的多个并发请求?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
09-17 23:45