Last active
February 4, 2025 15:28
-
-
Save ArseniySavin/a26796b097d0725d3aecbf64e5374541 to your computer and use it in GitHub Desktop.
Tuning .NET Application Performance and IIS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
Path: C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Config | |
Description: The setting calculate using this article https://docs.microsoft.com/en-us/previous-versions/msp-n-p/ff647813(v=pandp.10) | |
The values set out of youre hardware. | |
Example for hardware: CPU 4 Core, RAM 8 Gb | |
--> | |
<system.web> | |
<!--<processModel autoConfig="true" />--> | |
<processModel autoConfig="False" maxWorkerThreads="1000" maxIoThreads="1000" minWorkerThreads="1000" minIoThreads="1000" /> | |
<httpRuntime appRequestQueueLimit="50000" minFreeThreads="999" minLocalRequestFreeThreads="999"/> | |
</system.web> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment