I need to add cache functionality and found a new shiny class called MemoryCache. However, I find MemoryCache a little bit crippled as it is (I'm in need of regions functionality). Among other things I need to add something like ClearAll(region). Authors made a great effort to keep this class without regions support, code like:

if (regionName != null)
{
throw new NotSupportedException(R.RegionName_not_supported);
}

flies in almost every method. I don't see an easy way to override this behaviour. The only way to add region support that I can think of is to add a new class as a wrapper of MemoryCache rather then as a class that inherits from MemoryCache. Then in this new class create a Dictionary and let each method "buffer" region calls. Sounds nasty and wrong, but eventually...

Do you know of better ways to add regions to MemoryCache?

link|improve this question

feedback

1 Answer

You can create more than one just one MemoryCache instance, one for each partition of your data.

http://msdn.microsoft.com/en-us/library/system.runtime.caching.memorycache.aspx :

you can create multiple instances of the MemoryCache class for use in the same application and in the same AppDomain instance

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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