What is Scavenging? - ASP.NET

What is Scavenging?

- A process where items are removed from the cache in order to free the memory based on their priority.

- A property called "CacheItemPriority" is used to figure out the priority of each item inside the cache.

- This priority property is set when an item is added to the cache.

- It is the process of deleting items from the cache when memory is scarce.
Explain the types of Caching using Cache object of ASP.NET
Types of Caching - Page output: Is used to fetch information or data at page level..
How to Cache different version of same page? - ASP.NET
How to Cache different version of same page - The ways to cache different versions on the same page using ASP.NET cache object is using OutputCache object..
Explain how to implement Fragment Cache - ASP.NET
Explain how to implement Fragment Cache - Fragment cache is to store user controls individually within a web form in cache..
Post your comment