I'm looking to upgrade my ASP.NET web app to the .NET 4 framework. Would I see performance improvements right away?

link|improve this question

2  
I'd expect performance to be approximately equal to before. What kind of performance improvements do you expect? – spender Oct 19 '10 at 22:26
2  
I don't know what to expect, hence the question. – 白ジェームス Oct 19 '10 at 22:41
These types of questions are extremely difficult to answer. No comparisons have been done (that i know of) of ASP.NET 4 vs ASP.NET 3.5 (for example). Most things to improve "speed" (again, another issue - page load time? CLR compile time?), can apply to both versions, like reducing ViewState, reducing round-trips to DB, minimizing HTTP requests, etc. These are general practices, not ASP.NET 4 specific. Perhaps you can mention what areas you are wanting to see improvement? – RPM1984 Oct 19 '10 at 22:46
@RPM1984: Not to sound rude but my question is very simple and straightforward. To answer your question, I'm looking for any area that would gain instant, as in not changing any code, performance improvements. – 白ジェームス Oct 19 '10 at 22:54
1  
Yes, you would...in certain areas. OK, next question... – rball Oct 19 '10 at 23:30
show 1 more comment
feedback

2 Answers

up vote 3 down vote accepted

According to this blog post, there are supposed to be internal runtime improvements that should help out of the box.

According to Microsoft, there have also been a number of invisible performance improvements in the internals of the ASP.NET runtime that should make ASP.NET 4.0 applications run more efficiently and use less resources. These features come without any change requirements in applications and are virtually transparent, except that you get the benefits by updating to ASP.NET 4.0.

There is a PDC presentation (which I cannot currently find) that claimed the same thing. I would assume that YMMV depending on your implementation, in any case.

Obviously ASP.Net 4.0 will benefit from any areas of the .Net 4.0 runtime on which it depends that are improved. It's usually safe to assume that a new release will make things no worse...

link|improve this answer
feedback

A lot of the performance improvement is probably in development. A lot of things have been improved like handling of ID's so Javascript can interact better with controls. And some C#4.0 features like the dynamic object and it late binding. Here is a list of all the benefits ASP.NET 4.0 Have:

http://www.asp.net/learn/whitepapers/aspnet4

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.