尝试获取 ICacheManager 类型的实例时发生激活错误,密钥 “””

本文关键字:激活 错误 密钥 获取 ICacheManager 类型 实例 | 更新日期: 2023-09-27 18:36:33

我在谷歌中搜索,但没有找到解决该错误的解决方案。我正在尝试创建缓存管理器的实例,但出现异常。我使用的是企业库 5.0。我找不到我的问题。我完全被困住了。任何提示都是可观的。

ICacheManager cachManager = EnterpriseLibraryContainer.Current.GetInstance<ICacheManager>();

var cm = CacheFactory.GetCacheManager("Cache Manager");

配置信息。

<configSections>
  <section name="cachingConfiguration" type="Microsoft.Practices.EnterpriseLibrary.Caching.Configuration.CacheManagerSettings, Microsoft.Practices.EnterpriseLibrary.Caching, Version=5.0.505.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="true" />
</configSections>
<cachingConfiguration defaultCacheManager="Cache Manager">
  <cacheManagers>
    <add name="Cache Manager" type="Microsoft.Practices.EnterpriseLibrary.Caching.CacheManager, Microsoft.Practices.EnterpriseLibrary.Caching, Version=5.0.505.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" expirationPollFrequencyInSeconds="60" maximumElementsInCacheBeforeScavenging="10000" numberToRemoveWhenScavenging="10" backingStoreName="NullBackingStore" />
  </cacheManagers>
  <backingStores>
    <add type="Microsoft.Practices.EnterpriseLibrary.Caching.BackingStoreImplementations.NullBackingStore, Microsoft.Practices.EnterpriseLibrary.Caching, Version=5.0.505.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" name="NullBackingStore" />
  </backingStores>
</cachingConfiguration>

尝试获取 ICacheManager 类型的实例时发生激活错误,密钥 “””

当我从 v. 5.0.414.0 升级到版本 5.0.505.0 时,我遇到了同样的问题。就我而言,我必须确保在调用CacheFactory.GetCacheManager(..)之前执行以下内容,并且它再次正常工作。

     // first call this
     Container.AddNewExtension<EnterpriseLibraryCoreExtension>();
     // and then
     ICacheManager cacheManager = CacheFactory.GetCacheManager("Cache Manager");