缓存工具类CacheHelper
2018-06-22 06:07:38来源:未知 阅读 ()
代码:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Web; namespace Common.Utils { /// <summary> /// 缓存 /// </summary> public static class CacheHelper { /// <summary> /// 获取缓存 /// </summary> public static object Get(string cacheKey) { return HttpRuntime.Cache[cacheKey]; } /// <summary> /// 设置缓存 /// </summary> public static void Set(string cacheKey, object value) { HttpRuntime.Cache.Insert(cacheKey, value); } /// <summary> /// 添加缓存 /// </summary> public static void Set<T>(string cacheKey, object value) { Type type = typeof(T); string tableName = type.Name; if (HttpRuntime.Cache[tableName] == null) { Dictionary<string, object> dic = new Dictionary<string, object>(); dic.Add(cacheKey, value); HttpRuntime.Cache.Insert(tableName, dic); } else { Dictionary<string, object> dic = (Dictionary<string, object>)HttpRuntime.Cache[tableName]; if (dic.Keys.Contains<string>(cacheKey)) { dic[cacheKey] = value; } else { dic.Add(cacheKey, value); } HttpRuntime.Cache[tableName] = dic; } } /// <summary> /// 获取缓存 /// </summary> public static object Get<T>(string cacheKey) { Type type = typeof(T); string tableName = type.Name; if (HttpRuntime.Cache[tableName] != null) { Dictionary<string, object> dic = (Dictionary<string, object>)HttpRuntime.Cache[tableName]; if (dic.Keys.Contains<string>(cacheKey)) { return dic[cacheKey]; } } return null; } /// <summary> /// 删除缓存 /// </summary> public static void Remove<T>() { HttpRuntime.Cache.Remove(typeof(T).Name); } } }
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- .NET 缓存模块设计实践 2020-01-20
- ASP.NET 程序员都非常有用的85个工具 2019-11-15
- ASP.NET缓存管理的方法 2019-09-17
- 详解ASP.NET MVC中使用jQuery时的浏览器缓存问题 2019-09-08
- ASP.NET缓存方法和最佳实践 2019-08-23
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash