How do you improve your ASP.NET MVC application performance?
feedback
|
|
A compiled list of possible sources of improvement are below: General
Caching
Routing
Security
DAL
Load balancing
Client side
| |||||||||||||||||||
feedback
|
|
This is nice presentation about ASP.NET MVC performance: http://codeclimber.net.nz/archive/2009/04/17/how-to-improve-the-performances-of-asp.net-mvc-web-applications.aspx http://blog.whiletrue.com/2009/04/aspnet-mvc-performance/ Compiled query will increase performance of your application, but it has nothing in common with ASP.NET MVC. It will speed up every db application, so it is not really about MVC. | ||||
feedback
|
|
Not an earth shattering optimization but I thought I'd throw this out there - Use CDN's for jquery, etc. Quote from ScottGu himself: The Microsoft Ajax CDN enables you to significantly improve the performance of ASP.NET Web Forms and ASP.NET MVC applications that use ASP.NET AJAX or jQuery. The service is available for free, does not require any registration, and can be used for both commercial and non-commercial purposes. We even use the CDN for our webparts in Moss that use jquery. | |||
|
feedback
|
|
When accessing data via LINQ rely on IQueryable ... http://stackoverflow.com/questions/1106802/why-use-asqueryable-instead-of-list ... and leverge a good Repository pattern: http://stackoverflow.com/questions/1223194/loading-subrecords-in-the-repository-pattern This will optimize data access to ensure only the data needed is loaded and when only it is needed. | |||
|
feedback
|
|
Also if you use NHibernate you can turn on and setup second level cache for queries and add to queries scope and timeout. And there is kick ass profiler for EF, L2S and NHibernate - http://hibernatingrhinos.com/products/UberProf . It will help to tune your queries. | |||||
feedback
|
|
Basic suggestion is to follow REST principals and the following points ties some of these principals to the Asp.Net MVC framework:
| |||||||||||||||||||
feedback
|
|
This may seem obvious, but run your site in Release mode, not Debug mode, when in production, and also during performance profiling. Release mode is much faster. Debug mode can hide performance problems in your own code. | ||||
|
feedback
|
|
IN addition to all the great info on optimising your app on the server side I'd say you should take a look at YSlow, it's a superb resource for improving site performance on the client side. This applies to all sites, not just ASP.NET MVC. | ||||
|
feedback
|
|
One super easy thing to do is to think asynchronously when accessing the data you want for the page. Whether reading from a web service, file, data base or something else, use the async model as much as possible. While it won't necessarily help any one page be faster it will help your server perform better overall. | ||||
|
feedback
|