首页 > 代码库 > .Net Cache
.Net Cache
在.net中有两个类实现了Cache
- HttpRuntime.Cache 应该程序使用的Cache,web也可以用
- HttpContext.Current.Cache web上下文的Cache对象,只能在Web上使用
asp.net 页面缓存的封装
/// <summary> /// 根据 cacheKey 获取缓存内容 /// </summary> /// <param name="context">HttpContext</param> /// <param name="cacheName">key</param> /// <param name="cacheFunc">Func委托,该方法返回结果为要缓存的对象,当存在改缓存时,不会执行该委托的方法</param> /// <param name="timeoutHours">单位:小时,默认值为12</param> /// <returns>缓存内容</returns> public static Object GetCacheByName(HttpContextBase context,string cacheName,Func<object>cacheFunc,int timeoutHours=12) { if (context.Cache[cacheName] == null) { context.Cache.Insert(cacheName, cacheFunc.Invoke(), null, DateTime.Now.AddHours(timeoutHours), Cache.NoSlidingExpiration); } return context.Cache[cacheName]; }
.Net Cache
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。