How do you improve your ASP.NET MVC application performance?
|
|
A compiled list of possible sources of improvement are below: General
Caching
Routing
Security
DAL
Load balancing
Client side
Global configuration
|
|||||||||||||||||||
|
|
Code Climber and this blog entry provide detailed ways of increasing application's 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. |
||||
|
|
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. |
|||
|
|
|
Basic suggestion is to follow REST principals and the following points ties some of these principals to the Asp.Net MVC framework:
|
|||||||||||||||||||
|
|
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. |
|||
|
|
|
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. |
|||||
|
|
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. |
||||
|
|
|
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. |
||||
|
|
|
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. |
||||
|
|
|
I will also add : Use Sprites : Sprites is a great thing to reduce request, you merge all your images into a single one and use css to get to good part of the sprite, Microsoft provides a good library to do it : Sprite and Image Optimization Preview 4. Cache Your server object : If you have some references lists or datas which will change rarely, you can cache them into memory instead of querying database everytime. Use ADO.Net instead of Entity Freamework : EF4 or EF5 are great to reduce developement time but it will be painfull to optimize. It's more simple to optimize a stored procedure than Entity Framework. So you should use Store procedure as much as possible. Dapper provides a simple way to query and map SQL with very good performance. Cache Page or partial page: MVC Provides some easy filter to cache page according to some parameters, so use it. Reduce Database calls: You can create a unique Database Request that return multiple object, check on Dapper website. Always have a clean architecture: Have a clean n-tiers architecture, even on small project. It will help you to keep your code clean and it will be easier to optimize it if needed. You can take a look at this template "Neos-SDI MVC Template" which will create for you a clean architecture with lots of performance improvements by default (check MvcTemplate website). |
||||
|
|