protected internal override DataCache GetCache(IAppFabricCacheFactory cacheFactory)
        {
            if (log.IsDebugEnabled)
            {
                log.DebugFormat("Get Cache named {0}", RegionName);
            }

            return cacheFactory.GetCache(AppFabricProviderSettings.Settings.RegionCacheTypeCacheName, true);
        }
Beispiel #2
0
 protected internal override DataCache GetCache(IAppFabricCacheFactory cacheFactory)
 {
     return(cacheFactory.GetCache(AppFabricProviderSettings.Settings.RegionCacheTypeCacheName, true));
 }
        protected internal override DataCache GetCache(IAppFabricCacheFactory cacheFactory)
        {
            if (log.IsDebugEnabled)
            {
                log.DebugFormat("Get Cache named {0}", RegionName);
            }

            return cacheFactory.GetCache(RegionName, !AppFabricProviderSettings.Settings.NamedCachesMustExist);
        }
 protected internal override DataCache GetCache(IAppFabricCacheFactory cacheFactory)
 {
     return(cacheFactory.GetCache(RegionName, !AppFabricProviderSettings.Settings.NamedCachesMustExist));
 }
 protected internal override DataCache GetCache(IAppFabricCacheFactory cacheFactory)
 {
     return cacheFactory.GetCache(AppFabricProviderSettings.Settings.RegionCacheTypeCacheName, true);
 }