asp.net IIS 7.0 或更高版本中 maxConcurrentThreadsPerCPU 的默认值是多少?
what is the default value for maxConcurrentThreadsPerCPU in asp.net IIS 7.0 or later?
我正在搜索 IIS 7.0 或更高版本可以为 ASP.NET 应用程序处理多少并发线程。
我发现一些文章引用了 <applicationPool>
元素(Web 设置)
https://msdn.microsoft.com/en-us/library/dd560842.aspx
因此,我检查了 aspnet.config
,但没有 <applicationPool>
元素。当没有配置 <applicationPool>
元素时,请告诉我 maxConcurrentThreadsPerCPU 的 默认值吗?
来自the Configuration File schema docs:
By default this setting is 0, which means that ASP.NET does not limit
the number of threads that can be created per CPU, although the CLR
thread pool also limits the number of threads that can be created.
我正在搜索 IIS 7.0 或更高版本可以为 ASP.NET 应用程序处理多少并发线程。
我发现一些文章引用了 <applicationPool>
元素(Web 设置)
https://msdn.microsoft.com/en-us/library/dd560842.aspx
因此,我检查了 aspnet.config
,但没有 <applicationPool>
元素。当没有配置 <applicationPool>
元素时,请告诉我 maxConcurrentThreadsPerCPU 的 默认值吗?
来自the Configuration File schema docs:
By default this setting is 0, which means that ASP.NET does not limit the number of threads that can be created per CPU, although the CLR thread pool also limits the number of threads that can be created.