首页 > 其他 > 详细

自定义缓存类扩展类

时间:2020-07-15 14:21:59      阅读:46      评论:0      收藏:0      [点我收藏+]
using System;
using System.Runtime.Caching;

namespace MemoryCacheHelpSpace
{
    public static class MemoryCacheHelp
    {
        private static Object m_objLocker = new object();

        public static T GetCacheItem<T>(String strKey,
            Func<T> cachePopulate,
            TimeSpan? slidingExpiration = null,
            DateTime? absoluteExpiration = null)
        {
            if (string.IsNullOrWhiteSpace(strKey)) throw new ArgumentException("无效键");
            if (cachePopulate == null) throw new ArgumentException("委托不能为null");
            if (slidingExpiration == null && absoluteExpiration == null) throw new ArgumentException("间隔或时间至少有一个");
            if (MemoryCache.Default[strKey] == null)
            {
                lock (m_objLocker)
                {
                    var item = new CacheItem(strKey, cachePopulate());
                    var policy = CreatePolicy(slidingExpiration, absoluteExpiration);
                    MemoryCache.Default.Add(item, policy);
                }
            }
            return (T)MemoryCache.Default[strKey];
        }

        public static void CacheRemove(string strKey)
        {
            if (string.IsNullOrWhiteSpace(strKey)) throw new ArgumentException("无效键");
            if (MemoryCache.Default[strKey] != null)
            {
                lock (m_objLocker)
                {
                    MemoryCache.Default.Remove(strKey);
                }
            }
        }

        private static CacheItemPolicy CreatePolicy(TimeSpan? slidingExpiration, DateTime? absoluteExpiration)
        {
            var policy = new CacheItemPolicy();
            if (absoluteExpiration.HasValue)
            {
                policy.AbsoluteExpiration = absoluteExpiration.Value;
            }
            else if (slidingExpiration.HasValue)
            {
                policy.SlidingExpiration = slidingExpiration.Value;
            }
            policy.Priority = CacheItemPriority.Default;
            return policy;
        }
    }
}

 

自定义缓存类扩展类

原文:https://www.cnblogs.com/itsone/p/13304338.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!