Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

asp.net

That's the question... Do you think ASP.Net is a technology suitable for high-load sites? Do you know any populer sites -apart from stackoverflow, of course- built with this technology? Thanks.

like image 290
Víctor Avatar asked Dec 09 '08 20:12

Víctor


People also ask

Is ASP.NET good for websites?

When it comes to . NET Core, it's the best framework for web development. With the development of ASP.NET Core, Microsoft has addressed a lot of questions with one shot. It allows developers to develop web apps, web services, mobile backend, and many other things under a single framework.

What is ASP.NET used for?

ASP.NET is a free web framework for building great websites and web applications using HTML, CSS, and JavaScript. You can also create Web APIs and use real-time technologies like Web Sockets.

Is ASP.NET good for backend?

ASP.NET Core is a free, open-source web framework developed by Microsoft. It provides features that enable building the backend for modern web applications, as well as web APIs. The programming language that is used for the development of ASP.NET Core is C# or any other . NET-based programming language.


1 Answers

MySpace, Orkut, ASP.NET Forums, Microsoft.com, ...

ASP.NET has great caching and load balancing features that make it suitable for high load Web sites.

It's also a very flexible, well-designed framework. If you don't like part of it, or think its performance intensive for your high load application, you can just throw out that layer and replace it with your own. If you don't like WebControls and Pages due to its overhead, you are able to write your own HttpHandlers.

Basically, I think ASP.NET MVC is going to be a better platform for high load and customized Web sites, since it can be more hand tuned (relative to ASP.NET pages that try to abstract away the resulting HTML, for good reasons) and works better with AJAX applications. WebControls and ViewState are two parts that usually face criticism that are pretty much gone away in MVC.

like image 55
mmx Avatar answered Nov 03 '22 23:11

mmx