停止 IIS 7.5 应用程序池回收

发布于 2024-09-08 11:01:04 字数 188 浏览 3 评论 0原文

如何在 IIS 7.5 中阻止应用程序池回收?

我已配置以下设置:

ProcessModel -> Idle Time-out (minutes) = 0
Recycling -> Regular Time Intervals (minutes) = 0

这些设置是否足以阻止应用程序池回收?

How do stop application pools from recycling in IIS 7.5?

I have configured the following settings:

ProcessModel -> Idle Time-out (minutes) = 0
Recycling -> Regular Time Intervals (minutes) = 0

Are these settings enought to stop an application pool from recycling?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

猫九 2024-09-15 11:01:04

是的,假设您还使用 Private Memory Limit = 0,那应该没问题。
AppPool 仍然有可能回收的原因,例如在添加新的全局模块时,需要回收它以便配置更改生效,但您也可以使用“禁用配置更改时的回收”来禁用它。

最后,如果您正在运行 ASP.NET,您应该考虑到当配置(例如 web.config)发生更改时,AppDomains 仍然会回收。但这不应该影响 AppPool 本身,仅影响其中运行的 ASP.NET 应用程序(例如会话状态),但这又取决于您为什么问这个问题,无论这是否重要。

Yes, that should be ok assuming you also use Private Memory Limit = 0.
There are still reasons an AppPool could recycle, such as when adding a new Global Module, it will require to be recycled so configuration changes take effect, but you can also disable that using the "Disable Recycling on Configuratoin Changes".

Finally if you are running ASP.NET you should consider that still AppDomains will recycle when changes in config (such as web.config) happen. But that should not affect the AppPool per'se only the ASP.NET applications running in it (such as Session State), but again it depends on why you ask this question if this is important or not.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文