
December 11th, 2012, 10:26 PM
|
|
Registered User
|
|
Join Date: Dec 2012
Posts: 1
Time spent in forums: 21 m 44 sec
Reputation Power: 0
|
|
|
Not able to improve performance of web site
Something changed like below:
<system.net>
<connectionManagement>
<add address="*" maxconnection="999" />
</connectionManagement>
</system.net>
<system.web>
<processModel autoConfig="false"
maxWorkerThreads = "100"
maxIoThreads = "100"
minWorkerThreads = "50"
minIoThreads = "50"
/>
<httpRuntime
minFreeThreads="176"
minLocalRequestFreeThreads="152"
/>
</system.web>
After change the value , the throughput and response time have no changes.
the version of .net is v2.0
Does anyone know why the throughput and response time have no changes after tuning the IIS parameters??
THX
|