C# – How to clear MemoryCache

.net-4.0ccachingmemorymemorycache

I have created a cache using the MemoryCache class. I add some items to it but when I need to reload the cache I want to clear it first. What is the quickest way to do this? Should I loop through all the items and remove them one at a time or is there a better way?

Best Answer

Dispose the existing MemoryCache and create a new MemoryCache object.