vote up 2 vote down star
1

Duplicate of Is ASP.Net a technology suitable for high-load sites?

My boss is complaining I should lay off the .NET stuff since in his eyes it is slow and not scalable. He gets this idea from one project of another company which failed due to scalability issues.

In my eyes this has nothing to do with .NET, but with bad architecture.

Does anyone have any great examples of huge projects/sites which use .NET? (millions of users,... etc) or is PHP/apache really the only way to go?

flag

76% accept rate
by no means PHP/Apache is way to go for that reason. If you really after scalability ASP.NET or Java. LAMP stacks especially in the MySQL stage suffers from scalability a lot. Also Java or ASP.NET is so much faster on execution. – dr. evil Apr 22 at 10:56
Orkut is used by millions of users and is a asp.net application...:-) – Girish1984 Apr 22 at 11:10
3  
Duplicate of stackoverflow.com/questions/354201/… – Binary Worrier Apr 22 at 11:13

closed as exact duplicate by Binary Worrier, amdfan, Brian Rasmussen, Mehrdad Afshari, Gulzar Apr 22 at 12:34

16 Answers

vote up 9 vote down check

http://msdn.microsoft.com/en-us/default.aspx

link|flag
How do you know that this site is running Asp.net? the .aspx extension is not reliable I'm afraid. – deadbeef Apr 22 at 12:06
1  
Yeah, everybody knows Microsoft itself uses Linux internally :)) lol – Mehrdad Afshari Apr 22 at 12:14
check the HTTP header "X-AspNet-Version = 2.0.50727" – Davy Landman Apr 22 at 12:27
Ah, yes, that would seem to confirm it:-) – deadbeef Apr 22 at 12:32
1  
@Steve Haigh: I was joking man! Wasn't so serious... – Mehrdad Afshari Apr 22 at 13:19
show 1 more comment
vote up 11 vote down

This site?

link|flag
This site actually uses MVC, which is much more lightweight than ASP.NET, and has far less users than a million, although it is one of the best-performing sites of this size I've seen. I'm just not sure if it would convince your boss. – Slavo Apr 22 at 10:53
8  
@Slavo: ASP.Net MVC is ASP.Net, yes it's not the classic Web Forms asp.net. – Josh Apr 22 at 11:06
vote up 1 vote down

Microsoft.com

link|flag
vote up 0 vote down

www.microsoft.com

link|flag
vote up 0 vote down

how about MSDN and other microsoft sites that used by millions of users all around the world ?

link|flag
vote up 4 vote down

Check this blog post out from Jeff Atwood. Most .net sites which can't scale is due to bad coding and design. Not from an inefficency in the framework.

MySpace I believe is also using .net.

Also keep in mind just building something on non-ms technologies doesn't mean your not going to have issues. Look at Twitter for example.

link|flag
vote up 1 vote down

I thought myspace run on asp.net. Doesn't get much bigger than that.

link|flag
vote up 7 vote down

MySpace uses ASP.NET for most of the site (other parts use coldfusion).

Plentyoffish.com is another one.

link|flag
This would be the best example. MySpace runs on ASP.NET with SQL Server 2005 as backend. – Jon Limjap Apr 22 at 10:55
1  
I guess ColdFusion is just left as the extension of some pages (it was originally ColdFusion and migrated to ASP.NET afterward). The actual engine is ASP.NET. – Mehrdad Afshari Apr 22 at 11:50
vote up 6 vote down

myspace.com, dell.com, match.com, monster.com, costco.com, newegg.com, lego.com from http://www.asp.net/get-started/

link|flag
Wait: newegg? – Joel Coehoorn Sep 3 at 18:02
vote up 0 vote down

Since many sites listed here, that are backed by a lot of cash/resources/servers I would love to see one that is limited in that area, but has a huge amount of users.

This constraint would be required, since the question is about efficiency. Something like wikpedia (which isn't) or similar.

link|flag
StackOverflow, case closed – Elijah Glover Apr 22 at 10:59
@Elijah: Case reopened: StackOverflow uses the lighter form, MVC. – AndreasT Apr 22 at 11:05
It's still ASP.NET though – ChrisF Apr 22 at 11:58
You can check back with Adam Taylors answer above. – AndreasT Apr 22 at 12:06
vote up 0 vote down

www.Orkut.com

link|flag
vote up 1 vote down

Any performance issue is usually due to the architecture & design of the site, and not due to the language. You can do good design in any language, and bad design in any language. Although it is true that some languages encourage certain kinds of really bad behaviour. Different languages have different tendencies.

Myspace is written in ASP.Net. The architecture is discussed in detail here:

MySpace Architecture | High Scalability

link|flag
vote up 1 vote down

WOOT

I mean, woot.com is another one.

link|flag
vote up 5 vote down

This has been asked at least 3 times before. See:

http://stackoverflow.com/questions/354201/is-asp-net-a-technology-suitable-for-high-load-sites

http://stackoverflow.com/questions/228083/applications-that-use-net

http://stackoverflow.com/questions/750022/high-profile-asp-net-websites

link|flag
I searched a few times but couldn't find it... sorry – reinier Apr 22 at 11:22
No problem, I have to admit it wasn't obvious when I searched, but I remembered reading a couple of these before so I knew where I was looking:-) – deadbeef Apr 22 at 12:00
Who on earth goes through 6 month old questions (which have been closed) and downvotes answers? This question was closed as a dupe, the answer is accurate so I think at least a comment is needed for a downvote. – deadbeef Nov 25 at 12:36
vote up 2 vote down

Quick and dirty way to find some ASP.NET sites using Google is to perform a search inurl:.aspx. I believe the most popular sites are at the top of the results.

The other way is to manually check headers of the websites in Alexa Top 500: http://alexa.com/topsites. The first ASP.NET based website (not related to MS) I found was 36-th doubleclick.com.

link|flag
damn! doubleclick is that ...!!!! banner host. That's why these things are so slow!! ;) – AndreasT Apr 22 at 11:59
The irony is that I see IE's Privacy Report with the blocked doubleclick.net cookie on this page :) – Artem K. Apr 22 at 12:20
vote up 0 vote down

www.asp.net ( asp.net official website )

www.alertpay.com ( money transfer site similar to paypal )

myspace.com (millions of users !!)

link|flag

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