如何增加 IIS 中每个工作进程的线程数?
问问题
61247 次
3 回答
17
使用 IIS 可以做到这一点。我到处搜索,所以我决定把它放在这里让大家使用这些信息。
单击服务器。然后在右侧窗格中,双击 ASP。
增加每个处理器的线程数
于 2013-07-11T17:38:16.087 回答
2
使用配置文件
例如:
%windir%\Microsoft.NET\Framework64[版本]\config\machine.config
<configuration>
<system.net>
<connectionManagement>
<add address="*" maxconnection="24" />
</connectionManagement>
</system.net>
<system.web>
<processModel
autoConfig="true"
maxWorkerThreads = "100"
maxIoThreads = "100"
minWorkerThreads = "50"
minIoThreads = "50" />
<httpRuntime
minFreeThreads="176"
minLocalRequestFreeThreads="152" />
</system.web>
</configuration>
于 2019-05-08T12:30:34.687 回答
-11
在Application Pool
> Advanced Settings
>Maximum Worker Processes
于 2014-10-03T14:41:17.290 回答