Tuesday, April 10, 2007

* Auto Performance Tuning in ASP.NET 2.0

With ASP.NET 2.0, the process model (processModel) section of machine.config comes with default value of autoconfig="true".

This means that the tuning parameters will be set automatically by ASP.NET engine based on machine configuration.

The parameters considered for auto tuning are :

  • The maxWorkerThreads attribute.

  • The maxIoThreads attribute.

  • The minFreeThreads attribute of the httpRuntime element.

  • The minLocalRequestFreeThreads attribute of the httpRuntime element.

  • The maxConnection attribute of the <connectionManagement> Element (Network Settings) element.

    Their values are determined based on logic mentioned at following link.

    Other Posts

  • How to create Project Item Templates
  • Accelerating development using Visual Studio Templates
  • Visual Studio : How to create temporary projects
  • Reading & Writing XML data
  • Overview of XML support in .NET Framework
  • Creating a context menu item for folders
  • 1 comment:

    1. Try this it is a nice link
      http://msdn.microsoft.com/en-us/library/ms998549
      :idea:

      ReplyDelete