zoukankan      html  css  js  c++  java
  • 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());
                }
            }
        }
    
    }
  • 相关阅读:
    devise 异步发邮件
    ubuntutweak for lucid
    960gs blueprint
    Amoeba for mysql 0.31发布(读写分离、负载均衡、Failover、数据切分)
    Google App Servlet容器转型 – 从Tomcat到Jetty
    DBeaver
    用simple from暂不用formtastic
    [SQL Server]ORDER BY的问题
    PHP pathinfo() 函数
    php中使用head进行二进制流输出,让用户下载PDF等附件的方法
  • 原文地址:https://www.cnblogs.com/zyx321/p/6435838.html
Copyright © 2011-2022 走看看