• CacheHelper.cs(20170223)


    using System;
    using System.Collections;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Web;
    using System.Web.Caching;
    
    namespace System.CRM.Common
    {
        /// <summary>
        /// 缓存操作助手类
        /// </summary>
        public class CacheHelper
        {
            /// <summary>
            /// 获取数据缓存
            /// </summary>
            /// <param name="key">Cache的Key值</param>
            public static object GetCache(string key)
            {
                return HttpRuntime.Cache.Get(key);
            }
    
            /// <summary>
            /// 设置数据缓存
            /// </summary>
            /// <param name="key">Cache的Key值</param>
            /// <param name="value">Cache的Value值</param>
            public static void SetCache(string key, object value)
            {
                HttpRuntime.Cache.Insert(key, value);
            }
    
            /// <summary>
            /// 设置数据缓存
            /// </summary>
            /// <param name="key">Cache的Key值</param>
            /// <param name="value">Cache的Value值</param>
            /// <param name="timeout">最后一次访问Cache超过该时间间隔,则该Cache会被移除</param>
            public static void SetCache(string key, object value, TimeSpan timeout)
            {
                Cache objCache = HttpRuntime.Cache;
                objCache.Insert(key, value, null, DateTime.MaxValue, timeout, CacheItemPriority.NotRemovable, null);
            }
    
            /// <summary>
            /// 设置数据缓存
            /// </summary>
            /// <param name="key">Cache的Key值</param>
            /// <param name="value">Cache的Value值</param>
            /// <param name="absolute">超时时间(单位:天)</param>
            /// <param name="timeout">最后一次访问Cache超过该时间间隔,则该Cache会被移除</param>
            public static void SetCache(string key, object value, double absolute, TimeSpan timeout)
            {
                Cache objCache = HttpRuntime.Cache;
                objCache.Insert(key, value, null, DateTime.UtcNow.AddDays(absolute), timeout);
            }
    
            /// <summary>
            /// 移除指定数据缓存
            /// </summary>
            /// <param name="key">Cache的Key值</param>
            public static void RemoveCache(string key)
            {
                HttpRuntime.Cache.Remove(key);
            }
    
            /// <summary>
            /// 移除全部缓存
            /// </summary>
            public static void RemoveAllCache()
            {
                Cache cache = HttpRuntime.Cache;
                IDictionaryEnumerator ide = cache.GetEnumerator();
                while (ide.MoveNext())
                {
                    cache.Remove(ide.Key.ToString());
                }
            }
        }
    
    }
  • 相关阅读:
    递归函数之阶乘和字符串反转-基于R和Python
    ERROR getting 'android:label' attribute: attribute is not a string value
    CefGlue 学习杂记
    WinDbg 解决Font.ToLogFont AccessViolationExcetion
    使用ActivityManager的forceStopPackage方法结束进程
    (转) lucene+paoding亲密接触
    (转)Lucene中文分词图解
    (转)实战 Lucene,第 1 部分: 初识 Lucene
    Python时间戳的使用
    Andriod中Style/Theme原理以及Activity界面文件选取过程浅析
  • 原文地址:https://www.cnblogs.com/zyx321/p/6435838.html
Copyright © 2020-2023  润新知