Hi
friends, in this article I will explain about the different types of caching in
ASP.NET?
In previous article i explained one interview question ASP.NET Page Life Cycle Events or what is the sequence in which ASP.NET events are processed?
- Caching is a powerful feature in ASP.NET that can increase the performance of a Web application. Caching is generally used to catch frequently accessed data.
- Basically we are retrieving data from a database like SQL Server, Oracle etc. is one of the slowest Web site operations that we can perform.
- However, if you can cache the database data in memory and avoid accessing the database with every page request, you can dramatically increase the performance of your application.