TinyFrame升级之五:全局缓存的设计及实现
在任何框架中,缓存都是不可或缺的一部分,本框架亦然。在这个框架中,我们的缓存分为两部分:内存缓存和单次请求缓存。简单说来,就是一个使用微软提供的MemoryCache做扩展,并提供全局唯一实例;另一个使用微软提供的HttpContextBase做扩展,用户每发送一次请求,HttpContextBase都会被关联创建。先来看下接口约束:
1: using System;
2: using System.Collections.Generic;
3: using System.Linq;
4: using System.Text;
5:
6: namespace TinyFrame.Framework.Caching
7: {
8: public interface ICacheManager
9: {
10: //根据key获取缓存对象
11: T Get<T>(string key);
12:
13: //设置缓存对象
14: void Set(string key, object data, int cacheTime);
15:
16: //查询key是否被缓存
17: bool IsSet(string key);
18:
19: //从缓存移除
20: void Remove(string key);
21:
22: //缓存移除匹配
23: void RemoveByPattern(string pattern);
24:
25: //清空所有缓存
26: void Clear();
27: }
28: }
方法不多,但是包含了缓存的增删查。其中Get泛型方法可以通过Key返回缓存对象;Set方法可以添加缓存;IsSet方法可以检测缓存是否存在;Remove方法可以清除已有的单个缓存;RemoveByPattern可以通过正则匹配清除缓存;Clear方法则清除全部缓存。
首先是MemoryCacheManager的实现:
1: using System;
2: using System.Collections.Generic;
3: using System.Linq;
4: using System.Text;
5: using System.Runtime.Caching;
6: using System.Text.RegularExpressions;
7:
8: namespace TinyFrame.Framework.Caching
9: {
10: public class MemoryCacheManager:ICacheManager
11: {
12: protected ObjectCache Cache
13: {
14: get { return MemoryCache.Default; }
15: }
16:
17: public T Get<T>(string key)
18: {
19: return (T)Cache[key];
20: }
21:
22: public void Set(string key, object data, int cacheTime)
23: {
24: if (data == null)
25: return;
26: var policy = new CacheItemPolicy();
27: policy.AbsoluteExpiration = DateTime.Now + TimeSpan.FromMinutes(cacheTime);
28: Cache.Add(new CacheItem(key,data),policy);
29:
30: }
31:
32: public bool IsSet(string key)
33: {
34: return Cache.Contains(key);
35: }
36:
37: public void Remove(string key)
38: {
39: Cache.Remove(key);
40: }
41:
42: public void RemoveByPattern(string pattern)
43: {
44: var regex = new Regex(pattern, RegexOptions.Singleline
45: | RegexOptions.Compiled
46: | RegexOptions.IgnoreCase);
47: var keysToRemove = new List<string>();
48: foreach (var item in Cache)
49: if (regex.IsMatch(item.Key))
50: keysToRemove.Add(item.Key);
51:
52: foreach (string key in keysToRemove)
53: {
54: Remove(key);
55: }
56: }
57:
58: public void Clear()
59: {
60: foreach (var item in Cache)
61: {
62: Remove(item.Key);
63: }
64: }
65: }
66: }
然后是PerRequestCacheManager的实现:
1: using System;
2: using System.Collections.Generic;
3: using System.Linq;
4: using System.Text;
5: using System.Web;
6: using System.Collections;
7: using System.Text.RegularExpressions;
8:
9: namespace TinyFrame.Framework.Caching
10: {
11: public class PerRequestCacheManager : ICacheManager
12: {
13: public PerRequestCacheManager(HttpContextBase context)
14: {
15: this.context = context;
16: }
17:
18: private readonly HttpContextBase context;
19:
20: protected virtual IDictionary GetItems()
21: {
22: if (context != null)
23: return context.Items;
24:
25: return null;
26: }
27:
28: public T Get<T>(string key)
29: {
30: var items = GetItems();
31: if (items == null)
32: return default(T);
33:
34: return (T)items[key];
35: }
36:
37: public void Set(string key, object data, int cacheTime)
38: {
39: var items = GetItems();
40: if (items == null)
41: return;
42:
43: if (data != null)
44: {
45: if (items.Contains(key))
46: items[key] = data;
47: else
48: items.Add(key, data);
49: }
50: }
51:
52: public bool IsSet(string key)
53: {
54: var items = GetItems();
55: if (items == null)
56: return false;
57:
58: return items[key] != null;
59: }
60:
61: public void Remove(string key)
62: {
63: var items = GetItems();
64: if (items == null)
65: return;
66:
67: items.Remove(key);
68: }
69:
70: public void RemoveByPattern(string pattern)
71: {
72: var items = GetItems();
73: if (items == null)
74: return;
75:
76: var enumerator = items.GetEnumerator();
77: var regex = new Regex(pattern, RegexOptions.Singleline
78: | RegexOptions.Compiled
79: | RegexOptions.IgnoreCase);
80: var keysToRemove = new List<string>();
81: while (enumerator.MoveNext())
82: {
83: if (regex.IsMatch(enumerator.Key.ToString()))
84: {
85: keysToRemove.Add(enumerator.Key.ToString());
86: }
87: }
88:
89: foreach (string key in keysToRemove)
90: {
91: items.Remove(key);
92: }
93: }
94:
95: public void Clear()
96: {
97: var items = GetItems();
98: if (items == null)
99: return;
100:
101: var enumerator = items.GetEnumerator();
102: var keysToRemove = new List<string>();
103: while (enumerator.MoveNext())
104: {
105: keysToRemove.Add(enumerator.Key.ToString());
106: }
107:
108: foreach (string key in keysToRemove)
109: {
110: items.Remove(key);
111: }
112: }
113: }
114: }
二者的实现方式差不多。这里我就不做过多的解释了。
如果想使用的话,直接在Autofac容器中注册一下就行了。在这次演示中,我们使用MemoryCacheManager来做缓存容器。
这里我以一个分页为例:
1: string BookPaggerKey = "Books-{0}-{1}-{2}-{3}";
2: //分页查询
3: public IList<Book> GetBooksPagger(int pageCount
4: , int currentIndex
5: , out int totalCount
6: , string propertyName=""
7: , string propertyValue=""
8: )
9: {
10: IQueryable<Book> bookList = null;
11: int skipRows = 0;
12: if (currentIndex > 0) skipRows = currentIndex * pageCount;
13:
14: if (!string.IsNullOrEmpty(propertyName))
15: bookList = GetBooksByConstruct(propertyName, propertyValue);
16: else
17: bookList = bookRepository.GetMany(m => m.ID >= 0);
18: totalCount = bookList.Count();
19:
20: //return bookList.OrderBy(p => p.ID).Skip(skipRows).Take(pageCount).ToList();
21: string key = string.Format(BookPaggerKey, pageCount, currentIndex, propertyName, propertyValue);
22:
23: return cacheManager.Get(key, () => bookList.OrderBy(p => p.ID).Skip(skipRows).Take(pageCount).ToList());
24: }
第1行:定义了一个Cache的Key,用于标识保存ID
第23行:利用get方法检查缓存容器,如果缓存中数据不存在,则将查询数据添加到缓存;否则直接从缓存中拿出数据来。
我们来看看效果:
首先打开页面,我们换换页,目的是让页面被缓存住:
然后我们打开SQL的SQL Server Profile来进行追踪,现在,我们点击页面的刷新按钮,看看测试效果 :
当我们连续刷新页面好几次,但是并未见到有新的分页查询被追踪到,说明我们的数据被缓存住了。
最后我们加个断点调试一下缓存对象,可以找到被缓存的数据:
TinyFrame升级之五:全局缓存的设计及实现的更多相关文章
- .NET 缓存模块设计
上一篇谈了我对缓存的概念,框架上的理解和看法,这篇承接上篇讲讲我自己的缓存模块设计实践. 基本的缓存模块设计 最基础的缓存模块一定有一个统一的CacheHelper,如下: public interf ...
- 《深入理解mybatis原理7》 MyBatis的二级缓存的设计原理
<深入理解mybatis原理> MyBatis的二级缓存的设计原理 MyBatis的二级缓存是Application级别的缓存,它可以提高对数据库查询的效率,以提高应用的性能.本文将全面分 ...
- Redis缓存的设计、性能、应用与数据集群同步
Redis缓存的设计.性能.应用与数据集群同步 http://youzhixueyuan.com/design-performance-and-application-of-redis-cache.h ...
- 简单服务端缓存API设计
Want 我们希望设计一套缓存API,适应不同的缓存产品,并且基于Spring框架完美集成应用开发. 本文旨在针对缓存产品定义一个轻量级的客户端访问框架,目标支持多种缓存产品,面向接口编程,目前支持简 ...
- 《深入理解mybatis原理》 MyBatis的二级缓存的设计原理
MyBatis的二级缓存是Application级别的缓存,它可以提高对数据库查询的效率,以提高应用的性能.本文将全面分析MyBatis的二级缓存的设计原理. 如上图所示,当开一个会话时,一个SqlS ...
- Redis缓存策略设计及常见问题
Redis缓存设计及常见问题 缓存能够有效地加速应用的读写速度,同时也可以降低后端负载,对日常应用的开发至关重要.下面会介绍缓存使用技巧和设计方案,包含如下内容:缓存的收益和成本分析.缓存更新策略的选 ...
- mybatis深入理解(六)-----MyBatis的二级缓存的设计原理
MyBatis的二级缓存是Application级别的缓存,它可以提高对数据库查询的效率,以提高应用的性能.本文将全面分析MyBatis的二级缓存的设计原理. 1.MyBatis的缓存机制整体设计以及 ...
- 单例设计模式全局缓存accessToken
使用微信JS-SDK开发的小伙伴们,看文档经常会看到这样一句话:(下面是微信开发文档的一部分原话截图) 这句话就是:开发者必须在自己的服务全局缓存access_token,jsapi_ticket 下 ...
- IOS编程 图片缓存模块设计
手机客户端为什么会留存下来?而不是被一味的Wap替代掉?因为手机客户端有Wap无可替代的优势,就是自身较强的计算能力. 手机中不可避免的一环:图片缓存,在软件的整个运行过程中显得尤为重要. 先简单说一 ...
随机推荐
- python urllib2 发起http请求post
使用urllib2发起post请求 def GetCsspToken(): data = json.dumps({"userName":"wenbin", &q ...
- lamp安装
一.简介 什么是LAMPLAMP是一种Web网络应用和开发环境,是Linux, Apache, MySQL, Php/Perl的缩写,每一个字母代表了一个组件,每个组件就其本身而言都是在它所代表的方面 ...
- Python类属性的延迟计算
所谓类属性的延迟计算就是将类的属性定义成一个property,只在访问的时候才会计算,而且一旦被访问后,结果将会被缓存起来,不用每次都计算. 优点 构造一个延迟计算属性的主要目的是为了提升性能 实现 ...
- Ubuntu下安装Pyenv不成功,求指教
虚拟机:VMware12.0 操作系统:Ubuntu16.04 LTS (新安装系统) 已经按照网上的步骤: 1.安装git: $sudo apt-get install git 2.安装依赖包: $ ...
- node js学习(二)——REPL(交互式解释器)
1.简介 Node.js REPL(Read Eval Print Loop:交互式解释器) 表示一个电脑的环境,类似 Window 系统的终端或 Unix/Linux shell,我们可以在终端中输 ...
- 如何生成可变表头的excel
1.实现功能: 传入一个表头和数据,将数据导入到excel中. 为了便于项目的扩展,数据传入通过泛型集合传入,获取数据时,通过反射的方式获取,这样无论你的表头是多少项,我都能很方便的生成.另外为了便于 ...
- 如何更改nginx网站根目录 以及解析php
nginx默认网站根目录为/usr/local/nginx/html,如果想要将它改成/data/www 需配置 vim /usr/local/nginx/conf/nginx.conf 将其中的字段 ...
- monkeyrunner之eclipse中运行monkeyrunner脚本之环境搭建(四)
monkeyrunner脚本使用Python语法编写,但它实际上是通过Jython来解释执行. Jython是Python的Java实现,它将Python代码解释成Java虚拟机上的字节码并执行,这种 ...
- [转]NopCommerce之旅: 应用启动
本文转自:http://www.cnblogs.com/devilsky/p/5359881.html 我的NopCommerce之旅(6): 应用启动 一.基础介绍 Global.asax 文件 ...
- 认识与入门 Markdown,Markdown教程
一.认识 Markdown 在刚才的导语里提到,Markdown 是一种用来写作的轻量级「标记语言」,它用简洁的语法代替排版,而不像一般我们用的字处理软件 Word 或 Pages 有大量的排版.字体 ...