Which things i should take care to develop high performance asp.net application.
-
What are you looking for exactly?CSharpAtl– CSharpAtl2009-05-14 20:11:39 +00:00Commented May 14, 2009 at 20:11
-
What is the application going to do? There is a massive difference between making a simple CRUD application with a handful of DB tables, and an e-commerce, real-time business intelligence application capable of handling millions of transactions a second.JB King– JB King2009-05-14 20:11:54 +00:00Commented May 14, 2009 at 20:11
-
It's a general question. Obviously he can only expect general answers. That's perfectly legitimate as far as I'm concerned.Larsenal– Larsenal2009-05-14 20:20:14 +00:00Commented May 14, 2009 at 20:20
-
Its a real time application with lots of usersJalpesh Vadgama– Jalpesh Vadgama2009-05-14 20:30:48 +00:00Commented May 14, 2009 at 20:30
Add a comment
|
2 Answers
Check http://blog.whiletrue.com/2009/04/aspnet-mvc-performance/ and http://codeclimber.net.nz/archive/2009/04/17/the-performances-implications-of-the-expression-tree-based-actionlink-helper.aspx. I'm working too on a blog post about performances. Up to now just realized a simple bench tool using apache bench to compare client side rendering and server rendering using asp.net mvc and jQuery
Comments
Look at caching opportunities. Make sure it isn't "chatty."
3 Comments
Andrea Balducci
viewstate in aspnet.mvc? ... sounds new
BinaryMisfit
Trigger happy. To clarify. MVC does not have ViewState.
RSolberg
@Diago - You'd be surprised what you can hack together :) I read 70% of the title, next time I will read at least 80% so I see the "M" and then I might see the "VC....."