StackExchange.Redis.RedisConnectionException:“It was not possible to connect to the redis server(s);
StackExchange.Redis.RedisConnectionException:“It was not possible to connect to the redis server(s); to create a disconnected multiplexer, disable AbortOnConnectFail. Timeout”c#连接redis时报错这是因为使用StackEx
·
StackExchange.Redis.RedisConnectionException:“It was not possible to connect to the redis server(s); to create a disconnected multiplexer, disable AbortOnConnectFail. Timeout”
- c#连接redis时报错
- 这是因为使用StackExchange.Redis时默认abortconnect=true,即当redis连接报错时StackExchange会自动停止,即便后来redis服务端修好能够接通时,也不会自动连接。
- 解决办法,在C#的App.config文件中的redis连接配置中的redis连接地址后加上abortConnect=false
- java类似,只需要修改对应的redis连接地址的值即可
更多推荐
已为社区贡献1条内容
所有评论(0)