Is there any way to improve the performance of your IIS by changing some configuration parameters?
Or do you have any tips in general on how to improve the performance of a ASP.NET app?
Thanks!
|
Is there any way to improve the performance of your IIS by changing some configuration parameters? Or do you have any tips in general on how to improve the performance of a ASP.NET app? Thanks!
| |||
|
feedback
|
| |||||||
feedback
|
|
Your first port of call should be here:- | |||
|
feedback
|
|
Have you looked into Caching? or micro-caching Take a look at http://www.dnrtv.com/default.aspx?showNum=85. | |||
|
feedback
|
|
If you have access to the IIS Server there are several things you can modify with it including: HTTP Compression - Great for static content like JS and CSS files. | |||
|
feedback
|
|
On the other hand, you may try IIS Tuner open source tool for optimization | |||
|
feedback
|
|
Precompiling your ASP.NET application makes it faster. Release build is a plus. | |||
|
feedback
|
|
In short yes, there are lots of ways you can improve performance of your application through iis settings. However your specific application will need its' own tuning. The general hints are in the other posts. However there will also be some specific things about your application which can be tuned. For example if you have one or two directories which have a lot of activity compared to the rest of the site you can put them in separate application pools. It is quite an art form and if after you have followed general advice here you are still having performance problems, I would recommend getting a consultant in for a week to tune things for you. Preferably one which can look at your ASP too. The other thing you could do if you have specific choke points is to post queries on SO. There is only so far you can go with a generic advice. | |||
|
feedback
|
|
Check out http://iistuner.codeplex.com/ it solved all of our problems regarding setting the config values in alot of places. It basically fixes all wierd and hard to find settings with one click. | |||
|
feedback
|