我已经按照此处的说明安装了nuget包Microsoft.Web.RedisOutputCacheProvider,用于在多个服务器实例上运行的Azure Web App,并且收到以下错误:
When using a custom output cache provider like 'MyRedisOutputCache',only the following expiration policies and cache features are supported: file dependencies,absolute expirations,static validation callbacks and static substitution callbacks.
配置设置如下:
<system.web> <caching> <outputCache defaultProvider="MyRedisOutputCache"> <providers> <add name="MyRedisOutputCache" type="Microsoft.Web.Redis.RedisOutputCacheProvider" port="1234" host="[my host]" accessKey="[my access key]" ssl="true" /> </providers> </outputCache> </caching> </system.web>
我已经尝试将connectionString设置为有效的StackExchange.Redis连接字符串,而不是设置单个端口/主机等…但仍然收到相同的错误.
我们还使用相同的设置在同一个Web应用程序中运行Microsoft.Web.RedisSessionStateProvider,没有任何问题.
任何帮助,将不胜感激.
解决方法
将RedisOutputCacheProvider与使用AuthorizeAttribute的某些风格的安全控制器操作一起使用似乎会导致异常.它适用于AllowAnonymous操作.以下可能会有所帮助:
Why can’t I combine [Authorize] and [OutputCache] attributes when using Azure cache (.NET MVC3 app)?
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。