关于 Asp.NET 和 IIS 的问题
您能帮我解决以下问题吗:
- 应用程序池可能包含多个工作进程(w3wp.exe)?
- 应用程序池可能包含多个 Asp.NET 应用程序?
- Asp.NET 为每个 AppDomain 分配一个线程池?
- 一个AppDomain只能包含一个Web应用程序实例,但应用程序可以包含多个AppDomain?
你能回答这些问题吗?如果您还有更多要添加的内容,也请提供。
提前致谢。
编辑:这些问题与 IIS 6x 或更高版本相关,其中应用程序域可用。
Can you help me thru these questions :
- Application Pool may contain multiple worker processes (w3wp.exe) ?
- Application Pool may contain multiple Asp.NET Applications ?
- Asp.NET assigns one ThreadPool per AppDomain ?
- One AppDomain only contain one Web Application Instance but Application can contain multiple AppDomains ?
Can you answer those questions ? and if you have more to add, please provide them as well.
Thanks in advance.
Edit : These questions are related to IIS 6x or higher, in which App Domains are available.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
1) 是的
2) 是的,假设它们都使用相同的 .Net Framework 版本(无法在同一应用程序池中运行 1.x 和 2.0 应用程序)
3) 它应该是每个进程一个。
4)是的
1) yes
2) yes, assuming they are all using the same .Net Framework version (can't run 1.x and 2.0 apps in same app pool)
3) it's supposed to be one per process.
4) yes