zoukankan      html  css  js  c++  java
  • CacheHelper.cs

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    
    
    namespace Common
        {
        public class CacheHelper
        {
            /// <summary>
            /// 设置缓存永久
            /// </summary>
            /// <param name="sKey"></param>
            /// <param name="sContent"></param>
            public static void CacheInsert(string sKey, object oContent)
            {
                HttpContext.Current.Cache.Insert(sKey, oContent);
            }
    
    
            /// <summary>
            /// 设置缓存到指定时间
            /// </summary>
            /// <param name="sKey"></param>
            /// <param name="oContent"></param>
            /// <param name="dt">过期时间</param>
            public static void CacheInsert(string sKey, object oContent,DateTime dt)
            {
                HttpContext.Current.Cache.Insert(sKey, oContent, null, dt, TimeSpan.Zero);
            }
    
    
            /// <summary>
            /// 获取缓存的值
            /// </summary>
            /// <param name="sKey"></param>
            /// <returns>请注意如果没有找到则为Null</returns>
            public static object CacheGet(string sKey)
            {
               return HttpContext.Current.Cache.Get(sKey);
            }
    
    
            /// <summary>
            /// 清除缓存
            /// </summary>
            /// <param name="sKey"></param>
            /// <returns></returns>
            public static object CacheRemove(string sKey)
            {
                return HttpContext.Current.Cache.Remove(sKey);
            }
        }
    }

    以上这么写会有一点问题,HttpContext在winfrom和控制台程序会有问题。做了如下修改:

    using System;
    using System.Web;
    
    namespace Common
        {
        public class CacheHelper
        {
            /// <summary>
            /// 设置缓存永久
            /// </summary>
            /// <param name="sKey"></param>
            /// <param name="sContent"></param>
            public static void CacheInsert(string sKey, object oContent)
            {
                HttpRuntime.Cache.Insert(sKey, oContent);
            }
    
            /// <summary>
            /// 设置缓存到指定时间
            /// </summary>
            /// <param name="sKey"></param>
            /// <param name="oContent"></param>
            /// <param name="dt">过期时间</param>
            public static void CacheInsert(string sKey, object oContent,DateTime dt)
            {
                HttpRuntime.Cache.Insert(sKey, oContent, null, dt, TimeSpan.Zero);
            }
    
            /// <summary>
            /// 获取缓存的值
            /// </summary>
            /// <param name="sKey"></param>
            /// <returns>请注意如果没有找到则为Null</returns>
            public static object CacheGet(string sKey)
            {
               return HttpRuntime.Cache.Get(sKey);
            }
    
            /// <summary>
            /// 清除缓存
            /// </summary>
            /// <param name="sKey"></param>
            /// <returns></returns>
            public static object CacheRemove(string sKey)
            {
                return HttpRuntime.Cache.Remove(sKey);
            }
        }
    }
  • 相关阅读:
    数据科学工作中存在的7大问题与解决方案
    搞定SEO,看这一篇就够了
    李宏毅老师机器学习课程笔记_ML Lecture 3-1: Gradient Descent
    李宏毅老师机器学习课程笔记_ML Lecture 2: Where does the error come from?
    李宏毅老师机器学习课程笔记_ML Lecture 1: ML Lecture 1: Regression
    李宏毅老师机器学习课程笔记_ML Lecture 1: 回归案例研究
    python爬取中国大学排名
    爬虫实战_爬取静态单张图片
    李宏毅老师机器学习课程笔记_ML Lecture 0-2: Why we need to learn machine learning?
    多线程基础(一)
  • 原文地址:https://www.cnblogs.com/cxd1008/p/6372437.html
Copyright © 2011-2022 走看看