Enterprise Library——企业库缓存应用程序块


提供了一些方便易用的、可扩展的缓冲机制。
这些缓冲机制可以使用在整体应用中的各个层面。
支持后期存储,支持的存储方式包括数据库方式和独立存储方式(Isolated storage), 便于应用方便的重新启动
便于使用
便于配置
支持使用配置工具
线程安全
可以确保在内存中的缓冲和后端存储保持同步
1.创建配置文件
在您的应用配置文件中增加一个缓冲应用
为要创建的数据项创建 Cache manager
每一个子项需要有独立的名字
确定哪一个是默认的Cache manager
Enterprise Library——企业库缓存应用程序块
内存驻留型缓冲的典型应用: 
应用程序经常使用同样的数据
一个应用程序经常需要重新获得数据
磁盘驻留型缓冲的典型应用: 
数据量比较大
同时,从应用服务提供商(例如数据库)重新获取数据,开销比较大
在缓冲的生命周期中,必须经历系统的重新启动
创建默认 cache manager
CacheManager myCache = CacheManager.GetCacheManager(); 
创建命名的cache manager
CacheManager productsCache = 
       CacheManager.GetCacheManager(“Products”); 
默认的增加一个条目
productsCache.Add(“ProductID123”, productObject); 
基于时间的过期实例
DateTime refreshTime = new DateTime(2005, 3, 21, 2, 0, 0);
AbsoluteTime expireTime = new AbsoluteTime(refreshTime);
     
primitivesCache.Add("Key1", "Cache Item1", CacheItemPriority.Normal,
                                      null, expireTime);
变化时间的过期
被访问5分钟后
TimeSpan refreshTime = new TimeSpan(0, 5, 0);
SlidingTime expireTime = new SlidingTime(refreshTime);
     
primitivesCache.Add("Key1", "Cache Item1", CacheItemPriority.Normal,
                                      null, expireTime);
扩展时间应用范例
ExtendedFormatTime expireTime = 
  new ExtendedFormatTime("0 0 * * 6");
     
primitivesCache.Add("Key1", "Cache Item1", CacheItemPriority.Normal,
                                      null, expireTime);
基于提醒机制的过期  文件依赖的例子
FileDependency expireNotice = new FileDependency(“Trigger.txt”);
    
productsCache.Add("Key1", "Cache Item1", CacheItemPriority.Normal,
                                      null, expireNotice);
配置过期表决的频率
通过后台线程(BackgroundScheduler),移除过期事项
您可以对次线程进行配置
过高:CPU浪费,且CACHE没有起到作用
过低:内存消耗太大
建议使用性能计数器监视一下
Enterprise Library——企业库缓存应用程序块
条目移除提示
Caching Application Block 提供了项目移除的提醒,并在一下情况下被激活
条目过期了
条目被显式的移除了
条目被策略的清楚了
需要实现 ICacheItemRefreshAction接口
一个类实现了 ICacheItemRefreshAction 接口,同时如果需要后端存储时,还必须被标识为 Serializable (Especially for persistent backing store)
[Serializable]
public class ProductCacheRefreshAction : ICacheItemRefreshAction
{
    public void Refresh(string key, object expiredValue, 
                        CacheItemRemovedReason removalReason)
    {
      // Item has been removed from cache. 
      // Perform desired actions here,
      // based upon the removal reason (e.g. refresh the cache with the     
      // item).
    }
}
从Cache manager中获取
类型要正确
一定要检查空值 (item not found in cache)
public Product ReadProductByID(string productID)
{
     Product product = (Product)cache.GetData(productID);

    if (product == null)
    {
        // Item not in cache
    }
}
装载缓冲
缓冲的前期装载(Proactive loading)
应用启动时装载
优点
全部装载后,应用运行性能提升明显
缺点
启动时间长
可能带来不必要的资源浪费  
为了提升启动性能而进行的——基于不同线程的装载,有造成了应用结构的复杂性
缓冲的被动装载(Reactive loading)
按需装载
优点
只有在需要的时候才装载,对资源的需求小
缺点
但是在首次装载的时候,速度慢
主动装载的实例
1:Create cache manager
CacheManager productsCache = CacheManager.GetCacheManager(); 
2:Add items during component initialization
// Retrieve the data from the source
ArrayList list = dataProvider.GetProductList();

// Add all the items to the cache
for (int i = 0; i < list.Count; i++) 

    Product product = (Product) list[i]; 
    productsCache.Add( product.ProductID, product ); 

后期装载的实例
1:Create cache manager
CacheManager productsCache = CacheManager.GetCacheManager(); 
2:Add items when retrieved from data source
Product product = (Product) productsCache.GetData(productID); 
if (product == null) 

    // Retrieve it from the data provider 
    // and cache it for more requests. 
    product = dataProvider.GetProductByID(productID);
    if (product != null) 
    { 
       productsCache.Add(productID, product); 
    } 

从缓冲中移除
1:Remove item with specified key
productsCache.Remove(“Product101Key”)
2:No error occurs if key is not found
因此通过这种方法,不能知道ITEM是否移除了
如果对象实现了ICacheRefreshItemAction,可以有信息
刷新缓冲
productsCache.Flush()
为缓冲建立优先级
productsCache.Add("Key1", "Cache Item1", CacheItemPriority.High,
                   new ProductCacheRefreshAction(), expireNotice)

 实例

Enterprise Library——企业库缓存应用程序块using System;
Enterprise Library——企业库缓存应用程序块
using System.Drawing;
Enterprise Library——企业库缓存应用程序块
using System.Collections;
Enterprise Library——企业库缓存应用程序块
using System.ComponentModel;
Enterprise Library——企业库缓存应用程序块
using System.Windows.Forms;
Enterprise Library——企业库缓存应用程序块
using System.Data;
Enterprise Library——企业库缓存应用程序块
Enterprise Library——企业库缓存应用程序块
using Microsoft.Practices.EnterpriseLibrary.Caching;
Enterprise Library——企业库缓存应用程序块
using Microsoft.Practices.EnterpriseLibrary.Caching.Expirations;
Enterprise Library——企业库缓存应用程序块
using Microsoft.Practices.EnterpriseLibrary.Data;
Enterprise Library——企业库缓存应用程序块
Enterprise Library——企业库缓存应用程序块
Enterprise Library——企业库缓存应用程序块
namespace CacheWindowsApplication
Enterprise Library——企业库缓存应用程序块
{
Enterprise Library——企业库缓存应用程序块    
/// <summary>
Enterprise Library——企业库缓存应用程序块    
/// Form1 的摘要说明。
Enterprise Library——企业库缓存应用程序块    
/// </summary>

Enterprise Library——企业库缓存应用程序块    public class Form1 : System.Windows.Forms.Form
Enterprise Library——企业库缓存应用程序块    
{
Enterprise Library——企业库缓存应用程序块        
private System.Windows.Forms.Button btnQuery;
Enterprise Library——企业库缓存应用程序块        
/// <summary>
Enterprise Library——企业库缓存应用程序块        
/// 必需的设计器变量。
Enterprise Library——企业库缓存应用程序块        
/// </summary>

Enterprise Library——企业库缓存应用程序块        private System.ComponentModel.Container components = null;
Enterprise Library——企业库缓存应用程序块        
private System.Windows.Forms.Label label;
Enterprise Library——企业库缓存应用程序块        
private System.Windows.Forms.ListBox listBox;
Enterprise Library——企业库缓存应用程序块        
private System.Windows.Forms.Button btnGetFromCache;
Enterprise Library——企业库缓存应用程序块
Enterprise Library——企业库缓存应用程序块        
// **********************************************
Enterprise Library——企业库缓存应用程序块        
// Define parameters for demonstration
Enterprise Library——企业库缓存应用程序块        
//***********************************************
Enterprise Library——企业库缓存应用程序块
        private IDataReader myDr = null;
Enterprise Library——企业库缓存应用程序块        
private System.Windows.Forms.Button btnTestExpire;
Enterprise Library——企业库缓存应用程序块        
private CacheManager myCacheManager = null;
Enterprise Library——企业库缓存应用程序块        
private System.Windows.Forms.Button btnReview;
Enterprise Library——企业库缓存应用程序块        
private System.Windows.Forms.Button btnFileDependency;
Enterprise Library——企业库缓存应用程序块        
private System.Windows.Forms.Button btnQueryByFile;
Enterprise Library——企业库缓存应用程序块        
private System.Windows.Forms.Button button1;
Enterprise Library——企业库缓存应用程序块        
private System.Windows.Forms.Button button2;
Enterprise Library——企业库缓存应用程序块        
private System.Windows.Forms.Button button3;
Enterprise Library——企业库缓存应用程序块        
private CacheManager IsolatedCacheManager =null;
Enterprise Library——企业库缓存应用程序块
Enterprise Library——企业库缓存应用程序块        
public Form1()
Enterprise Library——企业库缓存应用程序块        
{
Enterprise Library——企业库缓存应用程序块            
//
Enterprise Library——企业库缓存应用程序块            
// Windows 窗体设计器支持所必需的
Enterprise Library——企业库缓存应用程序块            
//
Enterprise Library——企业库缓存应用程序块
            InitializeComponent();
Enterprise Library——企业库缓存应用程序块
Enterprise Library——企业库缓存应用程序块            
//
Enterprise Library——企业库缓存应用程序块            
// TODO: 在 InitializeComponent 调用后添加任何构造函数代码
Enterprise Library——企业库缓存应用程序块            
//
Enterprise Library——企业库缓存应用程序块
        }

Enterprise Library——企业库缓存应用程序块
Enterprise Library——企业库缓存应用程序块        
/// <summary>
Enterprise Library——企业库缓存应用程序块        
/// 清理所有正在使用的资源。
Enterprise Library——企业库缓存应用程序块        
/// </summary>

Enterprise Library——企业库缓存应用程序块        protected override void Dispose( bool disposing )
Enterprise Library——企业库缓存应用程序块        
{
Enterprise Library——企业库缓存应用程序块            
if( disposing )
Enterprise Library——企业库缓存应用程序块            
{
Enterprise Library——企业库缓存应用程序块                
if (components != null
Enterprise Library——企业库缓存应用程序块                
{
Enterprise Library——企业库缓存应用程序块                    components.Dispose();
Enterprise Library——企业库缓存应用程序块                }

Enterprise Library——企业库缓存应用程序块            }

Enterprise Library——企业库缓存应用程序块            
base.Dispose( disposing );
Enterprise Library——企业库缓存应用程序块        }

Enterprise Library——企业库缓存应用程序块
Enterprise Library——企业库缓存应用程序块        
Windows 窗体设计器生成的代码
Enterprise Library——企业库缓存应用程序块
Enterprise Library——企业库缓存应用程序块        
/// <summary>
Enterprise Library——企业库缓存应用程序块        
/// 应用程序的主入口点。
Enterprise Library——企业库缓存应用程序块        
/// </summary>

Enterprise Library——企业库缓存应用程序块        [STAThread]
Enterprise Library——企业库缓存应用程序块        
static void Main() 
Enterprise Library——企业库缓存应用程序块        
{
Enterprise Library——企业库缓存应用程序块            Application.Run(
new Form1());
Enterprise Library——企业库缓存应用程序块        }

Enterprise Library——企业库缓存应用程序块
Enterprise Library——企业库缓存应用程序块        
private void btnQuery_Click(object sender, System.EventArgs e)
Enterprise Library——企业库缓存应用程序块        
{        
Enterprise Library——企业库缓存应用程序块            
this.label.Text = System.Convert.ToString(myCacheManager.Count);
Enterprise Library——企业库缓存应用程序块        }

Enterprise Library——企业库缓存应用程序块
Enterprise Library——企业库缓存应用程序块        
private void Form1_Load(object sender, System.EventArgs e)
Enterprise Library——企业库缓存应用程序块        
{
Enterprise Library——企业库缓存应用程序块            Database db 
= DatabaseFactory.CreateDatabase("Database Instance");
Enterprise Library——企业库缓存应用程序块            IDataReader dr 
= db.ExecuteReader(CommandType.Text,"Select * from Products");
Enterprise Library——企业库缓存应用程序块
Enterprise Library——企业库缓存应用程序块            
this.myDr=dr;
Enterprise Library——企业库缓存应用程序块            
Enterprise Library——企业库缓存应用程序块            myCacheManager 
= CacheFactory.GetCacheManager();
Enterprise Library——企业库缓存应用程序块            myCacheManager.Add(
"MyDataReader",this.myDr);
Enterprise Library——企业库缓存应用程序块        }

Enterprise Library——企业库缓存应用程序块
Enterprise Library——企业库缓存应用程序块        
private void btnGetFromCache_Click(object sender, System.EventArgs e)
Enterprise Library——企业库缓存应用程序块        
{
Enterprise Library——企业库缓存应用程序块            IDataReader toBeDisplay 
= (IDataReader)myCacheManager.GetData("MyDataReader");
Enterprise Library——企业库缓存应用程序块            
Enterprise Library——企业库缓存应用程序块            
if(toBeDisplay != null)
Enterprise Library——企业库缓存应用程序块            
{
Enterprise Library——企业库缓存应用程序块                
while(toBeDisplay.Read())
Enterprise Library——企业库缓存应用程序块                
{
Enterprise Library——企业库缓存应用程序块                    
this.listBox.Items.Add(toBeDisplay.GetValue(2));
Enterprise Library——企业库缓存应用程序块                }

Enterprise Library——企业库缓存应用程序块            }

Enterprise Library——企业库缓存应用程序块        }

Enterprise Library——企业库缓存应用程序块
Enterprise Library——企业库缓存应用程序块        
private void btnTestExpire_Click(object sender, System.EventArgs e)
Enterprise Library——企业库缓存应用程序块        
{
Enterprise Library——企业库缓存应用程序块            Database db 
= DatabaseFactory.CreateDatabase("Database Instance");
Enterprise Library——企业库缓存应用程序块            DataSet ds 
= db.ExecuteDataSet(CommandType.Text,"Select * from Products");
Enterprise Library——企业库缓存应用程序块        
Enterprise Library——企业库缓存应用程序块            IsolatedCacheManager 
= CacheFactory.GetCacheManager("Isolated Cache Manager");
Enterprise Library——企业库缓存应用程序块            
Enterprise Library——企业库缓存应用程序块            DateTime refreshTime 
= new DateTime(2005624125130);
Enterprise Library——企业库缓存应用程序块            AbsoluteTime expireTime 
= new AbsoluteTime(refreshTime);
Enterprise Library——企业库缓存应用程序块                    
Enterprise Library——企业库缓存应用程序块            IsolatedCacheManager.Add(
"MyDataSet",ds, CacheItemPriority.Normal, null,expireTime);
Enterprise Library——企业库缓存应用程序块        }

Enterprise Library——企业库缓存应用程序块
Enterprise Library——企业库缓存应用程序块        
private void btnReview_Click(object sender, System.EventArgs e)
Enterprise Library——企业库缓存应用程序块        
{
Enterprise Library——企业库缓存应用程序块            
this.label.Text = System.Convert.ToString(IsolatedCacheManager.Count);
Enterprise Library——企业库缓存应用程序块        }

Enterprise Library——企业库缓存应用程序块
Enterprise Library——企业库缓存应用程序块        
private void button1_Click(object sender, System.EventArgs e)
Enterprise Library——企业库缓存应用程序块        
{
Enterprise Library——企业库缓存应用程序块        
Enterprise Library——企业库缓存应用程序块        }

Enterprise Library——企业库缓存应用程序块
Enterprise Library——企业库缓存应用程序块        
private void btnFileDependency_Click(object sender, System.EventArgs e)
Enterprise Library——企业库缓存应用程序块        
{
Enterprise Library——企业库缓存应用程序块            FileDependency expireNotice 
= new FileDependency("DependencyFile.txt");
Enterprise Library——企业库缓存应用程序块                
Enterprise Library——企业库缓存应用程序块            myCacheManager.Add(
"FileKey""String: Test Cache Item Dependency", CacheItemPriority.Normal, null, expireNotice);
Enterprise Library——企业库缓存应用程序块        }

Enterprise Library——企业库缓存应用程序块
Enterprise Library——企业库缓存应用程序块        
private void btnQueryByFile_Click(object sender, System.EventArgs e)
Enterprise Library——企业库缓存应用程序块        
{
Enterprise Library——企业库缓存应用程序块            
this.label.Text = System.Convert.ToString(myCacheManager.Count);
Enterprise Library——企业库缓存应用程序块        }

Enterprise Library——企业库缓存应用程序块
Enterprise Library——企业库缓存应用程序块        
private void button1_Click_1(object sender, System.EventArgs e)
Enterprise Library——企业库缓存应用程序块        
{
Enterprise Library——企业库缓存应用程序块            myCacheManager.Remove(
"FileKey");
Enterprise Library——企业库缓存应用程序块        }

Enterprise Library——企业库缓存应用程序块
Enterprise Library——企业库缓存应用程序块        
private void button2_Click(object sender, System.EventArgs e)
Enterprise Library——企业库缓存应用程序块        
{
Enterprise Library——企业库缓存应用程序块            
for(int intCount=0; intCount<8; intCount++)
Enterprise Library——企业库缓存应用程序块            
{
Enterprise Library——企业库缓存应用程序块                
string strKeyName = "Key"+System.Convert.ToString(intCount);
Enterprise Library——企业库缓存应用程序块                
Enterprise Library——企业库缓存应用程序块                
if (intCount%2 == 0)
Enterprise Library——企业库缓存应用程序块                
{
Enterprise Library——企业库缓存应用程序块                    myCacheManager.Add(strKeyName, 
"High", CacheItemPriority.High, nullnull);
Enterprise Library——企业库缓存应用程序块                }

Enterprise Library——企业库缓存应用程序块                
else
Enterprise Library——企业库缓存应用程序块                
{
Enterprise Library——企业库缓存应用程序块                    myCacheManager.Add(strKeyName, 
"Low", CacheItemPriority.Low, nullnull);
Enterprise Library——企业库缓存应用程序块                }

Enterprise Library——企业库缓存应用程序块            }

Enterprise Library——企业库缓存应用程序块        }

Enterprise Library——企业库缓存应用程序块
Enterprise Library——企业库缓存应用程序块        
private void button3_Click(object sender, System.EventArgs e)
Enterprise Library——企业库缓存应用程序块        
{
Enterprise Library——企业库缓存应用程序块            
for(int intCount=0; intCount<5; intCount++)
Enterprise Library——企业库缓存应用程序块            
{
Enterprise Library——企业库缓存应用程序块                
string strKeyName = "HighKey"+System.Convert.ToString(intCount);
Enterprise Library——企业库缓存应用程序块                myCacheManager.Add(strKeyName, 
"High", CacheItemPriority.High, nullnull);
Enterprise Library——企业库缓存应用程序块            }

Enterprise Library——企业库缓存应用程序块        }

Enterprise Library——企业库缓存应用程序块    }

Enterprise Library——企业库缓存应用程序块}

Enterprise Library——企业库缓存应用程序块



本文转自高海东博客园博客,原文链接:http://www.cnblogs.com/ghd258/archive/2005/10/28/263760.html,如需转载请自行联系原作者
上一篇:iOS:创建Siri 功能


下一篇:window phone 7 常用开发资源及说明之一