如果希望缓存的数据在多个WCF服务中可见(使用 PerCall 实例模式),是否使用MemoryCache类是有效选项?

有两种情况:

  • 服务都托管在IIS的同一应用程序中
  • 服务托管在同一服务器上的不同IIS应用程序中

    最佳答案

    1.the services are all hosted in the same app in IIS
    如果您使用MemoryCache.Default作为默认缓存对象,则答案是肯定的
    来自 MSDN
    This property always returns a reference to the default cache instance. For typical application scenarios, only one instance of MemoryCache is required.
    你可以像下面这样使用它

    ObjectCache cache = MemoryCache.Default;
    

    是否可以通过以下方式进行配置
    <system.runtime.caching>
     <memoryCache>
      <namedCaches>
       <add name="Default" physicalMemoryLimitPercentage="20"/>
      </namedCaches>
     </memoryCache>
    </system.runtime.caching>
    

    从您的其他服务实例中,您可以像下面这样访问您的内存缓存
    List<string> cacheKeys = MemoryCache.Default.Select(kvp => kvp.Key).ToList();
    
    foreach (string cacheKey in cacheKeys)
              MemoryCache.Default.Remove(cacheKey);
    
    2.the services are hosted in different IIS applications on the same server
    这将有些棘手,但仍将是一个有效的选项,您可以使用给定的netnamedPipeBinding在同一服务器上创建一个专用的Web服务进行缓存,其他Web服务可以使用该缓存

    关于c# - MemoryCache和每个调用多个WCF服务,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24699219/

  • 10-17 02:07