ASP.NET MVC 应用程序将运行多长时间
我想知道,当没有新请求进来时,ASP.NET (MVC) 应用程序将运行多长时间?假设我正在使用 IOC 容器,并且有一个为客户端提供服务的单例对象。据我所知它将满足不同的页面请求。但是,当没有新请求进来时,它会存活多久?是否有任何超时(可能通过 IIS 配置)表明我的应用程序何时关闭?
I wonder how long will an ASP.NET (MVC) application run, when no new requests come in? Lets say I'm using an IOC Container ans have a Singleton Object serving to the clients. As far as I know it will serve different page requests. But how long will it live when no new request come in? Is there any timeout (maybe configured through IIS) that says when my app will shut down?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通常它会运行 20 分钟,因为这是 IIS7 的默认值。不过,您可以配置该值。
Typically it will run for 20 min because that is the default value for IIS7. You can configure that value, however.