ASP.NET MVC Performance - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T00:08:49Z http://stackoverflow.com/feeds/question/43743 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/43743/asp-net-mvc-performance 30 ASP.NET MVC Performance GateKiller 2008-09-04T13:20:03Z 2009-10-16T10:41:56Z <p>I found some wild remarks that ASP.NET MVC is 30x faster than ASP.NET WebForms. What real performance difference is there, has this been measured and what are the performance benefits.</p> <p>This is to help me consider moving from ASP.NET WebForms to ASP.NET MVC.</p> <p><strong><em>I wasn't around to accept the answer which I thought was best and do not feel the system accepted answer is very good. My accepted answer would have been this one:</em></strong></p> <blockquote> <p><a href="http://stackoverflow.com/questions/43743/asp-net-mvc-performance/530946#530946">http://stackoverflow.com/questions/43743/asp-net-mvc-performance/530946#530946</a></p> </blockquote> http://stackoverflow.com/questions/43743/asp-net-mvc-performance/43749#43749 9 Answer by Espo for ASP.NET MVC Performance Espo 2008-09-04T13:22:19Z 2008-09-04T13:22:19Z <p>Rick Strahl has some thoughts on ASP.NET MVC performance in <a href="http://west-wind.com/weblog/posts/198731.aspx" rel="nofollow">What's Ailing ASP.NET Web Forms</a>.</p> http://stackoverflow.com/questions/43743/asp-net-mvc-performance/45614#45614 3 Answer by Seb Nilsson for ASP.NET MVC Performance Seb Nilsson 2008-09-05T12:06:29Z 2008-09-05T12:06:29Z <p>The only concrete numbers I can find which are from early ASP.NET MVC-development is on this forum-thread:</p> <p><a href="http://forums.asp.net/p/1231621/2224136.aspx" rel="nofollow">http://forums.asp.net/p/1231621/2224136.aspx</a></p> <p>Rob Connery himself somewhat confirms statement that ScottGu has claimed that ASP.NET MVC can serve 8000 requests per second.</p> <p>Maybe Jeff and his crew can give some kind of hint from their development of this site.</p> http://stackoverflow.com/questions/43743/asp-net-mvc-performance/46200#46200 31 Answer by Haacked for ASP.NET MVC Performance Haacked 2008-09-05T16:19:02Z 2009-10-16T10:41:56Z <p>We haven't performed the type of scalability and perf tests necessary to come up with any conclusions. I think ScottGu may have been discussing potential perf targets. As we move towards Beta and RTM, we will internally be doing more perf testing. However, I'm not sure what our policy is on publishing results of perf tests.</p> <p>In any case, any such tests really need to consider real world applications...</p> http://stackoverflow.com/questions/43743/asp-net-mvc-performance/46221#46221 24 Answer by DevelopingChris for ASP.NET MVC Performance DevelopingChris 2008-09-05T16:24:16Z 2008-09-05T16:24:16Z <p>It decreased one of my pages from 2MB payload, to 200k, just by eliminating the viewstate and making it bearable programatically to work with the submitted output.</p> <p>The size alone, even though the processing was the same will create vast improvements in connections per second and speed of the requests.</p> http://stackoverflow.com/questions/43743/asp-net-mvc-performance/221987#221987 1 Answer by Gerald for ASP.NET MVC Performance Gerald 2008-10-21T14:02:36Z 2008-10-21T14:02:36Z <p>There's really no way to answer this. MVC uses the Web Forms view engine by default itself, and can be configured to use any number of custom view engines, so if you want a performance comparison you'll have to be more specific.</p> http://stackoverflow.com/questions/43743/asp-net-mvc-performance/226037#226037 6 Answer by Hrvoje for ASP.NET MVC Performance Hrvoje 2008-10-22T14:40:53Z 2008-10-22T14:40:53Z <p>My testing shows something between 2x and 7x more req/sec on MVC, but it depends how you build your webforms app. With just "hello world" text on it, without any server side control, mvc is around 30-50% faster.</p> http://stackoverflow.com/questions/43743/asp-net-mvc-performance/530933#530933 1 Answer by tvanfosson for ASP.NET MVC Performance tvanfosson 2009-02-10T02:54:11Z 2009-02-10T02:54:11Z <p>For me the real "performance" improvement in MVC is the increase the testable surface of the application. With WebForms there was a lot of the application that was hard to test. With MVC the amount of code that becomes testable basically doubles. Basically all that isn't easily testable is the code that generates the layout. All of your business logic and data access logic -- including the logic that populates the actual data used in the view -- is now amenable to testing. While I expect it to be more performant as well -- the page life cycle is greatly simplified and more more amenable to web programming -- even if it were the same or a little slower it would be worth switching to from a quality perspective.</p> http://stackoverflow.com/questions/43743/asp-net-mvc-performance/530946#530946 22 Answer by Todd for ASP.NET MVC Performance Todd 2009-02-10T03:10:07Z 2009-02-10T03:10:07Z <p>I think this will be a hard question to definitively answer as so much will depend on <strong>A)</strong> how you implement the WebForms application, and <strong>B)</strong> how you implement the MVC application. In their "raw" forms, MVC is likely faster than WebForms, but years and years of tools and experience have produced a number of techniques for building fast WebForms applications. I'd be willing to bet that a senior ASP.NET developer could produce a WebForms application that rivals the speed of any MVC application- or at least achieve a negligible difference.</p> <p>The real difference- as @tvanfosson suggested- is in testability and clean SoC. If improving performance is your chief concern, I don't think it's a great reason to jump ship on WebForms and start re-building in MVC. Not at least until you've tried the available techniques for optimizing WebForms.</p> <p>-Todd</p> http://stackoverflow.com/questions/43743/asp-net-mvc-performance/530948#530948 11 Answer by Ariel for ASP.NET MVC Performance Ariel 2009-02-10T03:11:28Z 2009-02-10T03:11:28Z <p>I think that many of the people who think that WebForms are inherently slow or resource intensive are placing the blame in the wrong place. 9 times out of 10 when I am brought in to optimize a webforms app there are way too many places where the apps authors misunderstand the purpose of the viewstate. I'm not saying that the viewstate is perfect or anything, but it is WAY too easy to abuse it, and it is this abuse that is causing the bloated viewstate field.</p> <p>This article was invalueable in helping me understand many of these abuses. <a href="http://weblogs.asp.net/infinitiesloop/archive/2006/08/03/truly-understanding-viewstate.aspx" rel="nofollow">http://weblogs.asp.net/infinitiesloop/archive/2006/08/03/truly-understanding-viewstate.aspx</a></p> <p>In order to make a valid comparison between MVC and WebForms we need to be sure that both apps are using the architectures correctly.</p> http://stackoverflow.com/questions/43743/asp-net-mvc-performance/536125#536125 -2 Answer by John Leidegren for ASP.NET MVC Performance John Leidegren 2009-02-11T09:42:58Z 2009-02-11T09:42:58Z <p>I started out work in MVC about a year ago, I was inspired but not impressed.</p> <p>I loath the view state and see it as the root of all evil in terms of ASP.NET. This is why I just don't use it and to be perfectly honest why would you?</p> <p>I took basically the ASP.NET MVC Framework concept and built that in my own way. I changed a couple of things though. I built my controller wrapping code, or URL routing code around dynamic recompilation.</p> <p>Now, I would go as far as to say that ASP.NET MVC applications will be faster based on how you use it. If you completely abandon WebForms you'll be faster becuase the ASP.NET life-cycle and object model is humongous.</p> <p>When you're writing you're instantiating an army... no wait, a legion of objects that will participate in the rendering of your view. This is gonna be slower than if you where to express the minimal amount of behavior in the ASPX page itself. (I don't care about view engine abstraction because the support for ASPX pages in Visual Studio is decent, but I've completely dropped WebForms as a concept and basically any ASP.NET framework due to code bloat or not being able to change the things that wire my application).</p> <p>I've found ways of relying on dynamic recompilation (System.Reflection.Emit) for emitting special purpose objects and code whenever needed. The executing of this code is faster than reflection but initially built through the reflection service. This has given my MVC flavored framework great performance but also very statically typed. I don't use strings and name/value pair collections. Instead my custom compiler services goes in a rewrites a form post to a controller action being passed an reference type. Behind the scene there is a lot of things going on but this code is fast, a lot faster than WebForms or the MVC Framework.</p> <p>Also, I don't write URLs, I write lambda expressions that get translated into URLs that later tell which controller action to invoke. This isn't particularly fast but it beats having broken URLs. It's like if you had statically typed resources as well as statically typed objects. A statically typed web application? That is what I want!</p> <p>I would encourage more people to try this out.</p> http://stackoverflow.com/questions/43743/asp-net-mvc-performance/537433#537433 1 Answer by Kibbee for ASP.NET MVC Performance Kibbee 2009-02-11T15:54:04Z 2009-02-11T15:54:04Z <p>I think the problem here is that no matter how much faster ASP.Net MVC is than the old webforms, it won't make a difference, because most of the time taken is in the database. Most of the time, you web servers will be sitting at 0-10% CPU usage just waiting on your database server. Unless you get an extremely large number of hits on your website, and your database is extremely fast, you probably won't notice a big difference.</p>