回收 IIS7 应用程序池是否会终止任何当前正在执行的请求?
回收 IIS7 应用程序池是否会终止任何当前正在执行的请求?或者它是否等待所有请求完成(如排水停止)?
我不希望回收规则导致我的 WCF 站点出现间歇性错误。
谢谢
Does recycling the IIS7 application pool kill any currently executing requests? Or does it wait for all requests to complete (like a drain-stop)?
I don't want the recycling rules to cause intermittent errors from my WCF sites.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不。
这是来自 文档适用于 IIS6,我确信它适用于 IIS7。
如果您的 Web 服务请求长时间运行,您可以考虑增加关闭超时。
No.
This is from the Documentation for IIS6 and I am sure it applies for IIS7.
If your web service requests are long-running, you might consider increasing the shutdown timeout.
是的。回收应用程序池会导致 WWW 服务关闭为该应用程序池提供服务的所有正在运行的工作进程,然后启动新的工作进程。
这是来自 文档适用于 IIS6,我确信它适用于 IIS7
Yes. Recycling an application pool causes the WWW service to shut down all running worker processes that are serving the application pool, and then start new worker processes.
This is from the Documentation for IIS6 and I am sure it applies for IIS7