ASP.NET Cache Management

Cache management is one of the more interesting features in ASP.NET. Cache management enables you to store application data in a memory cache, which in turn enables you to create better performing scalable web applications.

So what exactly does cache management mean? It is a term used to describe the development pattern and process of storing frequently used data in memory.

By caching data in an ASP.NET application, you can gain substantial boosts to a web application’s performance. Any processing needed to create the data or object you want to cache is only created or processed once, then it is stored in the cache. All further access of this data or object uses the cached version without the overhead of processing, ...

Get Inside ASP.NET now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.