深入学习
Enterprise Library for .NET Framework 2.0Cache机制——分析篇
,
这篇文章介绍了很多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("\\Server06\DependencyFile.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)

        {

 

  }

    }

  }

相关文章:

  • 2021-05-13
  • 2021-09-23
  • 2021-11-24
  • 2021-11-05
  • 2021-07-30
  • 2021-06-11
  • 2021-06-04
  • 2021-06-02
猜你喜欢
  • 2021-07-29
  • 2021-10-24
  • 2021-11-15
  • 2021-11-28
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案