博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[工具类]缓存辅助类
阅读量:5879 次
发布时间:2019-06-19

本文共 2559 字,大约阅读时间需要 8 分钟。

写在前面

在项目中的统计模块中,查询耗费的时间,实在是太长了,通过优化sql语句或者添加缓存来提高查询的速度,自己就弄了一个缓存的辅助类,方便操作缓存中的数据。

CacheHelper

1 using System; 2 using System.Collections; 3 using System.Collections.Generic; 4 using System.Linq; 5 using System.Text; 6 using System.Threading.Tasks; 7 using System.Web; 8 using System.Web.Caching; 9 namespace WebSite.Statistics.Core.Utilities10 {11     /// 12     /// 缓存辅助类13     /// 14     public static class CacheHelper15     {16         /// 17         /// 根据键获取缓存数据18         /// 19         /// 20         /// 
21 public static object GetCache(string cacheKey)22 {23 Cache objCache = HttpRuntime.Cache;24 return objCache.Get(cacheKey);25 }26 /// 27 /// 设置缓存28 /// 29 /// 缓存键30 /// 缓存键31 public static void SetCache(string cacheKey, object objValue)32 {33 Cache cache = HttpRuntime.Cache;34 cache.Insert(cacheKey, objValue);35 }36 /// 37 /// 设置缓存38 /// 39 /// 缓存键40 /// 缓存的值41 /// 过期时间42 public static void SetCache(string cacheKey, object objValue, TimeSpan timeout)43 {44 Cache cache = HttpRuntime.Cache;45 cache.Insert(cacheKey, objValue, null, DateTime.MaxValue, timeout, System.Web.Caching.CacheItemPriority.NotRemovable, null);46 }47 /// 48 /// 设置缓存49 /// 50 /// 缓存键51 /// 缓存的value52 /// 绝对过期时间53 /// 滑动过期时间54 public static void SetCache(string cacheKey, object objValue, DateTime absoluteExpiration, TimeSpan slidingExpiration)55 {56 Cache cache = HttpRuntime.Cache;57 cache.Insert(cacheKey, objValue, null, absoluteExpiration, slidingExpiration);58 }59 /// 60 /// 移除指定的缓存61 /// 62 /// 63 public static void RemoveCache(string cacheKey)64 {65 System.Web.Caching.Cache cache = HttpRuntime.Cache;66 cache.Remove(cacheKey);67 }68 /// 69 /// 移除全部缓存70 /// 71 public static void RemoveAllCache()72 {73 System.Web.Caching.Cache cache = HttpRuntime.Cache;74 IDictionaryEnumerator CacheEnum = cache.GetEnumerator();75 while (CacheEnum.MoveNext())76 {77 cache.Remove(CacheEnum.Key.ToString());78 }79 }80 }81 }

总结

缓存用到的地方很多,封装的这个类,也算很基础的东西了,算是记录一下,以后用到的时候,方便查找。

转载于:https://www.cnblogs.com/wolf-sun/p/4469600.html

你可能感兴趣的文章
网格最短路径算法(Dijkstra & Fast Marching)(转)
查看>>
最短路径算法-Dijkstra算法的应用之单词转换(词梯问题)
查看>>
软链接和硬链接详解
查看>>
HTML5 video 视频标签 常用属性
查看>>
深入理解javascript对象系列第一篇——初识对象
查看>>
Redis_master-slave模式
查看>>
qemu安装
查看>>
多媒体开发之rtmp---rtmp client 端的实现
查看>>
3.使用Maven构建Web项目
查看>>
cisco 多生成树MST笔记
查看>>
C 到 C++ 的升级(一)
查看>>
彻底卸载删除微软Win10易升方法
查看>>
Ajaxload动态加载动画生成工具的实现(ajaxload的本地移植)
查看>>
SWT/JFACE之环境配置(一)
查看>>
手把手构建LAMP
查看>>
关于outlook 保存的.msg文件打开一次之后不能再次打开的问题
查看>>
CentOS 6.6安装python3.4.3后yum不能使用的解决办法
查看>>
应用程序日志中总是说MS DTC无法正确处理DC 升级/降级事件,是什么意思
查看>>
毕业了,爱情怎么办?
查看>>
关于django一个请求的生命周期
查看>>