0

我正在使用简单ObjectCacheMemoryCache类来实现缓存。

public class MemoryCacheManager
    {
        protected ObjectCache Cache
        {
            get
            {
                return MemoryCache.Default;
            }
        }

        /// <summary>
        /// Gets or sets the value associated with the specified key.
        public virtual T Get<T>(string key)
        {
            return (T)Cache[key];
        }

我想添加方法来检查空缓存但不基于任何键只想检查整个缓存是否为空我该怎么做?

4

2 回答 2

2

使用GetCount()方法。

https://msdn.microsoft.com/en-us/library/system.runtime.caching.memorycache.getcount(v=vs.110).aspx

var cache = MemoryCache.Default;

bool isEmpty = cache.GetCount() == 0;
于 2015-03-06T16:46:17.550 回答
2

您可以尝试GetCount()方法来查看MemoryCache.

于 2015-03-06T16:46:35.137 回答