Skip to content

Instantly share code, notes, and snippets.

@ArseniySavin
Last active February 4, 2025 15:28
Show Gist options
  • Save ArseniySavin/a26796b097d0725d3aecbf64e5374541 to your computer and use it in GitHub Desktop.
Save ArseniySavin/a26796b097d0725d3aecbf64e5374541 to your computer and use it in GitHub Desktop.
Tuning .NET Application Performance and IIS
<!--
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