弹来弹去跑马灯!

连接Redis 错误的解决方法: It was not possible to connect to the redis server(s); to create a disconnected multiplexer

 

The error you are getting is usually a sign that you have not set abortConnect=false in your connection string. The default value for abortConnect is true, which makes it so that StackExchange.Redis won't reconnect to the server automatically under some conditions. We strongly recommend that you set abortConnect=false in your connection string so that SE.Redis will auto-reconnect in the background if a network blip occurs.

 

Netcore :

pack: Microsoft.AspNetCore.DataProtection.StackExchangeRedis

using StackExchange.Redis;

 

public static void Main(string[] args)
{//Reids
var redis = ConnectionMultiplexer.Connect("localhost,abortConnect=false"); // or "localhost,abortConnect=false,connectTimeout=30000,responseTimeout=30000"
var s= redis.GetStatus();
CreateHostBuilder(args).Build().Run();
}

  

 

posted @ 2022-01-18 15:03  wgscd  阅读(1918)  评论(0编辑  收藏  举报