Microsoft Application Block for .NET - Cache

类别:.NET开发 点击:0 评论:0 推荐:

Microsoft Application Block for .NET

- Cache

1.      工作流

 

2.      Cache 的主要接口

·        IDataProtection

保护Cache数据,Cache Framework提供的有:DefaultDataProtection

·        ICacheItemExpiration

Cache数据过期,Cache Framework提供的有:AbsoluteTime, ExtendedFormatTime, FileDependency, SlidingTime.

·        IScavengingAlgorithm

自动清除Cache项目,Cache Framework提供的有:LruScavenging

·        ICacheStorage

Cache的保存,Cache Framework提供的有:MmfCacheStorage,

SingletonCacheStorage,SqlServerCacheStorage

 

3.      主要类

·        Cache manager

·        Cache service

·        Cache storage

 

4.      配置文件

主要对数据保护,数据过期,数据清除,数据保存进行配置。

 

5.      调用方法

CacheManager.Add 方法增加一个对象到Cache

CacheManager.GetData或GetItem方法从Cache获得一个对象

CacheManager.Flush和Remove方法将清空Cache或移除一个对象

 

 

 

本文地址:http://com.8s8s.com/it/it42331.htm