作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试让我的dotnet核心应用程序通过Stack Exchange Redis Cache连接到Heroku Redis实例。到目前为止,我有:
services.AddStackExchangeRedisCache(options =>
{
options.Configuration = Configuration["REDIS_URL"].Replace("redis://","");
});
StackExchange.Redis.RedisConnectionException: It was not possible to connect to the redis server(s). UnableToConnect on
最佳答案
得到它了:
services.AddStackExchangeRedisCache(options =>
{
var tokens = Configuration["REDIS_URL"].Split(':', '@');
options.ConfigurationOptions = ConfigurationOptions.Parse(string.Format("{0}:{1},password={2}", tokens[3], tokens[4], tokens[2]));
});
关于heroku - AddStackExchangeRedisCache和heroku Redis连接字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60259496/
我想在 ASP.NET Core 项目中实现分布式缓存(Redis)。经过一番研究后,我发现有两种方法可以使用 Startup.cs 和 ConnectionMultiplexer 中的 AddSta
我是一名优秀的程序员,十分优秀!