Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

4 Answers

up vote 12 down vote accepted

Dispose the existing MemoryCache and create a new MemoryCache object.

share|improve this answer
That'll do for me. Thanks. – Retrocoder Nov 15 '10 at 10:54
I initially used MemoryCache.Default, causing Dispose to give me some grief. Still, Dispose ended up being the best solution I could find. Thanks. – LaustN Dec 6 '10 at 11:16
Simple and effective. Me likes. – Kit Jul 21 '11 at 15:35
4  
@LaustN can you elaborate on the "grief" caused by MemoryCache.Default? I'm currently using MemoryCache.Default... MSDN's MemoryCache documentation makes me wonder if disposing and recreating is recommended: "Do not create MemoryCache instances unless it is required. If you create cache instances in client and Web applications, the MemoryCache instances should be created early in the application life cycle." Does this apply to .Default? I'm not saying using Dispose is wrong, I'm honestly just looking for clarification on all this. – ElonU Webdev Oct 11 '11 at 20:19
Thought it was worth mentioning that Dispose does invoke any CacheEntryRemovedCallback attached to current cached items. – Mike Guthrie Jul 31 '12 at 19:19
show 1 more comment
List<KeyValuePair<String, Object>> cacheItems = (from n in Cache.AsParallel() select n).ToList();

foreach (KeyValuePair<String, Object> a in cacheItems)
    Cache.Remove(a.Key);

Just a c# example for future reference.

share|improve this answer
5  
Just curious, why do you use .AsParallel()? Is this an expensive operation that should be distributed over multiple cores? If it is expensive, should I avoid calling this code frequently? – ElonU Webdev Oct 11 '11 at 20:07
1  
This has the same risk as @Tony's response; please see my comment under that. – TrueWill Dec 18 '12 at 19:54

From http://connect.microsoft.com/VisualStudio/feedback/details/723620/memorycache-class-needs-a-clear-method

The workaround is:

List<string> cacheKeys = MemoryCache.Default.Select(kvp => kvp.Key).ToList();
foreach (string cacheKey in cacheKeys)
{
    MemoryCache.Default.Remove(cacheKey);
}
share|improve this answer
2  
From the documentation: Retrieving an enumerator for a MemoryCache instance is a resource-intensive and blocking operation. Therefore, the enumerator should not be used in production applications. – TrueWill Dec 18 '12 at 19:52

You could also do something like this:


Dim _Qry = (From n In CacheObject.AsParallel()
           Select n).ToList()
For Each i In _Qry
    CacheObject.Remove(i.Key)
Next
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.