optimize-performance-img

How to Optimize performance of SQL Server in ASP.NET Core with Distributed Cache?

ASP.NET Core is becoming popular for developing web applications because of its cleaner and lighter architecture and cross-platform support. Such ASP.NET Core applications are high-traffic and run in a load-balanced multi-server deployment. In fact, it’s common to see 10-20 server web farms and a few even larger than this. Having a multi-server load-balanced deployment makes…

ASP.NET Output Cache in Microsoft Azure to Improve Performance

Microsoft ASP.NET Output Cache provides functionality to cache rendered content of ASP.NET pages or user controls for a specified duration. This allows your ASP.NET application to serve all subsequent requests from the cache instead of re-rendering and re-execution of a page. You add the <% @OutputCache %> directive on the page to use ASP.NET Output Cache.…

ASP.NET Session State Store in Microsoft Azure

Microsoft Azure provides a platform for ASP.NET applications in the cloud. Very often, these applications are high transaction and mission-critical in nature. Therefore, it is very important that these applications are scalable and result in no data loss if a web server goes down at any time. NCache Details             …

ASP.NET Session State Sharing across Multiple Azure Regions

Many high-traffic ASP.NET applications in Microsoft Azure are deployed over multiple Microsoft Azure regions in order to handle geographically separated traffic. In these situations, the load balancer always sends traffic to the Microsoft Azure region closest to the user for faster response time. In this scenario, you may run into a situation where you have…

How to Store ASP.NET Session State in Multi-Site Deployments?

ASP.NET is known for developing high-traffic web applications. Many of these applications are deployed to multiple geographical locations. This multi-site deployment is done either for disaster recovery purposes or for handling regional traffic by having the ASP.NET application closer to the end user. In the case of disaster recovery, there is usually one active site…

How to Cache ASP.NET View State in a Distributed Cache?

ASP.NET today is widely used for high traffic web applications that need to handle millions of users and are deployed in load balanced web farms. One important part of ASP.NET is View State that many applications use. ASP.NET View State is a very powerful mechanism that stores pages, controls and custom values between multiple HTTP…