EDN Admin
Well-known member
One of the most sure-fire ways to improve a web applications performance is to employ caching. Caching takes some expensive operation and stores its results in a quickly accessible location. Since its inception, ASP.NET has offered two flavors of caching:
This article focuses on extending the output caching feature. Well walk through how to create a custom output cache provider that caches a page or User Controls rendered output to disk (as opposed to memory) and then see how to plug the provider into an ASP.NET application. A complete working example, available in both VB and C#, is available for download at the end of this article. Read on to learn more!
Read More >
More...
- Output Caching - caches the entire rendered markup of an ASP.NET page or User Control for a specified duration.
- Data Caching - a API for caching objects. Using the data cache you can write code to add, remove, and retrieve items from the cache.
This article focuses on extending the output caching feature. Well walk through how to create a custom output cache provider that caches a page or User Controls rendered output to disk (as opposed to memory) and then see how to plug the provider into an ASP.NET application. A complete working example, available in both VB and C#, is available for download at the end of this article. Read on to learn more!
Read More >
More...