Increase number of threads per worker process IIS

前端 未结 3 1847
予麋鹿
予麋鹿 2021-02-07 02:54

How do you increase the number of threads per worker process in IIS?

相关标签:
3条回答
  • 2021-02-07 03:22

    Using IIS this can be done. I searched everywhere, so I decided to put this out here for everyone to use this information.

    Click on the server. Then on the right side pane, double click on ASP. Features view - ASP

    Increase the number of threads per processor enter image description here

    0 讨论(0)
  • 2021-02-07 03:44

    Using config files

    For example:

    %windir%\Microsoft.NET\Framework64[version]\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>
    
    0 讨论(0)
  • 2021-02-07 03:47

    In Application Pool > Advanced Settings > Maximum Worker Processes

    0 讨论(0)
提交回复
热议问题