1

我有以下自定义 Redis 输出缓存:

public class CustomRedisOutputCache : RedisOutputCacheProvider
{
    public override object Add(string key, object entry, DateTime utcExpiry)
    {
        if (!HttpContextHelper.IsPreview())
        {
            return base.Add(key, entry, utcExpiry);
        }

        return entry;
    }

    public override void Set(string key, object entry, DateTime utcExpiry)
    {
        if (!HttpContextHelper.IsPreview())
        {
            base.Set(key, entry, utcExpiry);
        }
    }
}

在 web.config 中设置:

<caching>
  <outputCache enableOutputCache="false" defaultProvider="CustomRedisOutputCache">
    <providers>
      <add name="CustomRedisOutputCache" type="xxx.xxx.Web.Caching.CustomRedisOutputCache" applicationName="xxx.xxx" connectionString="Redis" databaseId="4" throwOnError="false" retryTimeoutInMilliseconds="5000" loggingClassName="" loggingMethodName="" />
    </providers>
  </outputCache>

当我使用 outputcache 属性时,这一切都很好:

[OutputCache(CacheProfile = CacheProfile.Medium, VaryByParam = "*")]

但是,我正在尝试使用MVCDonutCaching Nuget 包实现 DonutCaching,并且当我将属性更改为

[DonutOutputCache(CacheProfile = CacheProfile.Medium, VaryByParam = "*")]

它失败并出现以下错误:

无法实例化和初始化“xxx.xxx.Web.Caching.CustomRedisOutputCache”类型的 OutputCacheProvider。确保您指定了完整的类型名称。

根据文档,我应该能够使用自定义缓存提供程序,那么有人知道问题出在哪里吗?

查看源代码,这里似乎失败了:

            try
            {
                Instance = (OutputCacheProvider)Activator.CreateInstance(Type.GetType(providerSettings.Type));
                Instance.Initialize(providerSettings.Name, providerSettings.Parameters);

            }
            catch (Exception ex)
            {
                throw new ConfigurationErrorsException(
                    string.Format("Unable to instantiate and initialize OutputCacheProvider of type '{0}'. Make sure you are specifying the full type name.", providerSettings.Type),
                    ex
                );
            }

上述课程的完整来源

更新

Type.GetType(providerSettings.Type)下载并单步执行源代码后,即使providerSettings.Type是 xxx.xxx.Web.Caching.CustomRedisOutputCache 并且该类存在于正在执行的项目 xxx.xxx.Web 中,它似乎也会返回 null

4

2 回答 2

1

我有同样的问题,使用相同的 MVC Donut Caching 和 RedisOutputCacheProvider 包。我在MVC Donut Caching issue list上找到了解决方案。似乎我们只需要更具体地了解所引用的类型。

当我将配置类型引用更改为:

type="Microsoft.Web.Redis.RedisOutputCacheProvider, Microsoft.Web.RedisOutputCacheProvider"

希望这有助于并消除在您的项目中拥有自定义构建或其他人的源代码的需要。

于 2020-10-21T18:26:08.097 回答
0

好的,getType返回 null 的原因是因为 nuget 包是在 .net4 中完成的,而使用它的项目是 .net4.6.1,因此 nuget 包无法获取类型,因为类不兼容。由于我有源,我能够在源解决方案中创建一个自定义 redis 提供程序,只需将我的项目和 web 配置指向更新的输出

于 2019-05-30T16:09:36.977 回答