Reputation: 18001
What is the latest data on ASP.Net MVC performance? How does it scale and perform under heavy load?
I have profiled my ASP.Net MVC 1 application and most of the time is wasted in System.Web.MVC assembly, so I thought it might be a concern.
Upvotes: 1
Views: 506
Reputation: 4209
In fact this site (stack overflow) is done in asp.net MVC 1. How does it seem speed wise?
Upvotes: 1
Reputation: 15931
We have a high traffic ASP.NET MVC website and it performs well.
Dont worry about the time spent in MVC itself. This will not be an issue.
The main issue I see for even more traffic on our site is that we can only cache complete Actions. But right now this all looks better then expected.
Upvotes: 0
Reputation: 24754
"MVC uses more time than nHibernate"
This can't be true.
Even with a simple select with nHibernate your probably looking at more than 50ms for connection, query translation, query execution, and finally materialization against MSSQL.
A base MVC request against with no logic returns in < 1 ms.
Upvotes: 6