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

简介:

提供了一些方便易用的、可扩展的缓冲机制。
这些缓冲机制可以使用在整体应用中的各个层面。
支持后期存储,支持的存储方式包括数据库方式和独立存储方式(Isolated storage), 便于应用方便的重新启动
便于使用
便于配置
支持使用配置工具
线程安全
可以确保在内存中的缓冲和后端存储保持同步
1.创建配置文件
在您的应用配置文件中增加一个缓冲应用
为要创建的数据项创建 Cache manager
每一个子项需要有独立的名字
确定哪一个是默认的Cache manager

内存驻留型缓冲的典型应用: 
应用程序经常使用同样的数据
一个应用程序经常需要重新获得数据
磁盘驻留型缓冲的典型应用: 
数据量比较大
同时,从应用服务提供商(例如数据库)重新获取数据,开销比较大
在缓冲的生命周期中,必须经历系统的重新启动
创建默认 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没有起到作用
过低:内存消耗太大
建议使用性能计数器监视一下

条目移除提示
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)

 实例

using  System;
using  System.Drawing;
using  System.Collections;
using  System.ComponentModel;
using  System.Windows.Forms;
using  System.Data;

using  Microsoft.Practices.EnterpriseLibrary.Caching;
using  Microsoft.Practices.EnterpriseLibrary.Caching.Expirations;
using  Microsoft.Practices.EnterpriseLibrary.Data;


namespace  CacheWindowsApplication
{
    
/// <summary>
    
/// Form1 的摘要说明。
    
/// </summary>

    public class Form1 : System.Windows.Forms.Form
    
{
        
private System.Windows.Forms.Button btnQuery;
        
/// <summary>
        
/// 必需的设计器变量。
        
/// </summary>

        private System.ComponentModel.Container components = null;
        
private System.Windows.Forms.Label label;
        
private System.Windows.Forms.ListBox listBox;
        
private System.Windows.Forms.Button btnGetFromCache;

        
// **********************************************
        
// Define parameters for demonstration
        
//***********************************************
        private IDataReader myDr = null;
        
private System.Windows.Forms.Button btnTestExpire;
        
private CacheManager myCacheManager = null;
        
private System.Windows.Forms.Button btnReview;
        
private System.Windows.Forms.Button btnFileDependency;
        
private System.Windows.Forms.Button btnQueryByFile;
        
private System.Windows.Forms.Button button1;
        
private System.Windows.Forms.Button button2;
        
private System.Windows.Forms.Button button3;
        
private CacheManager IsolatedCacheManager =null;

        
public Form1()
        
{
            
//
            
// Windows 窗体设计器支持所必需的
            
//
            InitializeComponent();

            
//
            
// TODO: 在 InitializeComponent 调用后添加任何构造函数代码
            
//
        }


        
/// <summary>
        
/// 清理所有正在使用的资源。
        
/// </summary>

        protected override void Dispose( bool disposing )
        
{
            
if( disposing )
            
{
                
if (components != null
                
{
                    components.Dispose();
                }

            }

            
base.Dispose( disposing );
        }


        
Windows 窗体设计器生成的代码

        
/// <summary>
        
/// 应用程序的主入口点。
        
/// </summary>

        [STAThread]
        
static void Main() 
        
{
            Application.Run(
new Form1());
        }


        
private void btnQuery_Click(object sender, System.EventArgs e)
        
{        
            
this.label.Text = System.Convert.ToString(myCacheManager.Count);
        }


        
private void Form1_Load(object sender, System.EventArgs e)
        
{
            Database db 
= DatabaseFactory.CreateDatabase("Database Instance");
            IDataReader dr 
= db.ExecuteReader(CommandType.Text,"Select * from Products");

            
this.myDr=dr;
            
            myCacheManager 
= CacheFactory.GetCacheManager();
            myCacheManager.Add(
"MyDataReader",this.myDr);
        }


        
private void btnGetFromCache_Click(object sender, System.EventArgs e)
        
{
            IDataReader toBeDisplay 
= (IDataReader)myCacheManager.GetData("MyDataReader");
            
            
if(toBeDisplay != null)
            
{
                
while(toBeDisplay.Read())
                
{
                    
this.listBox.Items.Add(toBeDisplay.GetValue(2));
                }

            }

        }


        
private void btnTestExpire_Click(object sender, System.EventArgs e)
        
{
            Database db 
= DatabaseFactory.CreateDatabase("Database Instance");
            DataSet ds 
= db.ExecuteDataSet(CommandType.Text,"Select * from Products");
        
            IsolatedCacheManager 
= CacheFactory.GetCacheManager("Isolated Cache Manager");
            
            DateTime refreshTime 
= new DateTime(2005624125130);
            AbsoluteTime expireTime 
= new AbsoluteTime(refreshTime);
                    
            IsolatedCacheManager.Add(
"MyDataSet",ds, CacheItemPriority.Normal, null,expireTime);
        }


        
private void btnReview_Click(object sender, System.EventArgs e)
        
{
            
this.label.Text = System.Convert.ToString(IsolatedCacheManager.Count);
        }


        
private void button1_Click(object sender, System.EventArgs e)
        
{
        
        }


        
private void btnFileDependency_Click(object sender, System.EventArgs e)
        
{
            FileDependency expireNotice 
= new FileDependency("DependencyFile.txt");
                
            myCacheManager.Add(
"FileKey""String: Test Cache Item Dependency", CacheItemPriority.Normal, null, expireNotice);
        }


        
private void btnQueryByFile_Click(object sender, System.EventArgs e)
        
{
            
this.label.Text = System.Convert.ToString(myCacheManager.Count);
        }


        
private void button1_Click_1(object sender, System.EventArgs e)
        
{
            myCacheManager.Remove(
"FileKey");
        }


        
private void button2_Click(object sender, System.EventArgs e)
        
{
            
for(int intCount=0; intCount<8; intCount++)
            
{
                
string strKeyName = "Key"+System.Convert.ToString(intCount);
                
                
if (intCount%2 == 0)
                
{
                    myCacheManager.Add(strKeyName, 
"High", CacheItemPriority.High, nullnull);
                }

                
else
                
{
                    myCacheManager.Add(strKeyName, 
"Low", CacheItemPriority.Low, nullnull);
                }

            }

        }


        
private void button3_Click(object sender, System.EventArgs e)
        
{
            
for(int intCount=0; intCount<5; intCount++)
            
{
                
string strKeyName = "HighKey"+System.Convert.ToString(intCount);
                myCacheManager.Add(strKeyName, 
"High", CacheItemPriority.High, nullnull);
            }

        }

    }

}




本文转自高海东博客园博客,原文链接:http://www.cnblogs.com/ghd258/archive/2005/10/28/263760.html,如需转载请自行联系原作者
相关文章
|
6月前
|
缓存 Java 数据库
优化您的Spring应用程序:缓存注解的精要指南
优化您的Spring应用程序:缓存注解的精要指南
106 0
|
6月前
|
缓存 监控 中间件
中间件Cache-Aside策略应用程序直接与缓存和数据库进行交互
【5月更文挑战第8天】中间件Cache-Aside策略应用程序直接与缓存和数据库进行交互
78 4
|
6月前
|
缓存 监控 负载均衡
【分布式技术专题】「缓存解决方案」一文带领你好好认识一下企业级别的缓存技术解决方案的运作原理和开发实战(数据缓存不一致分析)
【分布式技术专题】「缓存解决方案」一文带领你好好认识一下企业级别的缓存技术解决方案的运作原理和开发实战(数据缓存不一致分析)
126 2
|
6月前
|
缓存 应用服务中间件 数据库
【分布式技术专题】「缓存解决方案」一文带领你好好认识一下企业级别的缓存技术解决方案的运作原理和开发实战(多级缓存设计分析)
【分布式技术专题】「缓存解决方案」一文带领你好好认识一下企业级别的缓存技术解决方案的运作原理和开发实战(多级缓存设计分析)
151 1
|
6月前
|
存储 缓存 安全
【分布式技术专题】「缓存解决方案」一文带领你好好认识一下企业级别的缓存技术解决方案的运作原理和开发实战(存穿透、缓存击穿和缓存雪崩)
【分布式技术专题】「缓存解决方案」一文带领你好好认识一下企业级别的缓存技术解决方案的运作原理和开发实战(存穿透、缓存击穿和缓存雪崩)
110 1
|
6月前
|
存储 缓存 移动开发
HTML5 应用程序缓存
HTML5的离线缓存(Application Cache)允许网页存储资源以实现离线访问。通过manifest文件指定缓存内容和更新规则,比如列出要缓存的HTML、CSS、JS和图片。在HTML中引用manifest文件后,浏览器会根据文件变化更新缓存。但要注意,应用缓存不自动更新,需手动修改manifest触发,并且现代Web开发更多使用服务工作者(Service Workers)替代,以获得更优的离线体验和更新策略。
|
6月前
|
存储 缓存 监控
【分布式技术专题】「缓存解决方案」一文带领你好好认识一下企业级别的缓存技术解决方案的运作原理和开发实战(场景问题分析+性能影响因素)
【分布式技术专题】「缓存解决方案」一文带领你好好认识一下企业级别的缓存技术解决方案的运作原理和开发实战(场景问题分析+性能影响因素)
111 0
|
6月前
|
存储 缓存 监控
【分布式技术专题】「缓存解决方案」一文带领你好好认识一下企业级别的缓存技术解决方案的运作原理和开发实战(数据更新场景策略和方案分析)
【分布式技术专题】「缓存解决方案」一文带领你好好认识一下企业级别的缓存技术解决方案的运作原理和开发实战(数据更新场景策略和方案分析)
77 0
|
存储 缓存 数据库
极速Python编程:利用缓存加速你的应用程序
在软件开发中,缓存是一种常用的技术,用于提高系统性能和响应速度。Python提供了多种缓存技术和库,使我们能够轻松地实现缓存功能。本文将带您从入门到精通,逐步介绍Python中的缓存使用方法,并提供实例演示。
297 0