Azure 环境中的 IIS AppDomain 卸载
据我了解,在 Windows Azure Web 角色中 - 每个 .svc 都加载到它自己的应用程序域中。 IIS 是否在其进程生命周期内卸载 AppDomain,以便 svc 的调用(通常通过 HTTP 调用)将再次触发 Application_Start()?
As far as I understand, in a Windows Azure web role - every .svc is loaded in it's own App Domain. Does IIS ever unload the AppDomain duirng its process lifetime so that invocation (typically via a HTTP call) of the svc will trigger Application_Start() (again)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能会遇到 IIS 回收。 http://developer.mindtouch.com/en/kb/Disabling_IIS_app_pool_recycling
有编程的方式禁用它,如果这是你想要做的。
You may be running into IIS Recycling. http://developer.mindtouch.com/en/kb/Disabling_IIS_app_pool_recycling
There are programmatic way to disable this, if that is what you want to do.