I\'m using the cache provided by System.Runtime.Caching.MemoryCache
.
I\'d like to enumerate over the cache\'s items so that I can invalidate (evict then rel
Consider using ChangeMonitors, which allow you to automatically evict stale entries when certain conditions are met.
See Is there some sort of CacheDependency in System.Runtime.Caching?
This is similar to System.Web.Caching CacheDependencys, who allow you to evict entries when files or other cache entries change.