如何让我的DNN Azure网站使用Redis缓存?

时间:2016-06-08 14:09:24

标签: dotnetnuke azure-web-sites dotnetnuke-7 azure-redis-cache

我已经使用azure sql数据库,通过Webmatrix3成功地将我的DNN网站部署到azure。

我已经创建了一个azure redis缓存来尝试加快性能。

我搜索过并搜索过但未找到有关如何挂钩网站以使用缓存的文档。我是否必须以某种方式将其集成到WebMatrix中并重新发布?

发现这是为了通过Visual Studio集成ASP.NET应用程序:MSFT Documentation

$('input, select').keydown(function(e) {
if (e.keyCode==40) {
    $(this).next('input, select').focus();
}
});

我可以使用我在DNN web.config中找到的相同appSettings行,将新创建的azure redis缓存值设置为“key”和“value”吗?

1 个答案:

答案 0 :(得分:0)

以下是您需要使用的DNN Redis Caching provider。我没有在Azure上进行设置,但它在本地运行良好,应该很容易在Azure上进行设置。

相关问题