负载均衡环境下缓存处理

时间:2022-04-23
本文章向大家介绍负载均衡环境下缓存处理,主要内容包括其使用实例、应用技巧、基本知识点总结和需要注意事项,具有一定的参考价值,需要的朋友可以参考一下。

深入学习Enterprise Library for .NET Framework 2.0的Cache机制——分析篇, 这篇文章介绍了很多Caching方面的内容,我就不详细说了,我这里主要说一个最近在做的一个Cache模块的Web Farm环境,也就是负载均衡环境下处理缓存的处理途径。主要思路如下:将缓存的过期策略使用依赖文件,就是缓存项依赖于文件,缓存发生改变,就修改依赖文件,一般就是将文件的日期修改。

可以通过使用共同的缓存依赖文件来完成. CacheManager对象Add方法的public void Add(string key, object value, CacheItemPriority scavengingPriority, ICacheItemRefreshAction refreshAction, params ICacheItemExpiration[] expirations)

ICacheItemExpiration有一个实现FileDependency. ICacheItemRefreshAction 接口可以用来实现缓存依赖的文件发生改变完成缓存过期后的重新获取数据,以此来达到各台服务器的Cache同步. 例如primitivesCache.Add(product.ProductID, product, enterNewItemForm.Priority,new ProductCacheRefreshAction(),new FileDependency("\Server06DependencyFile.txt"));

[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).
if (removalReason != CacheItemRemovedReason.Removed)
 {
 }
 }
}