It was not possible to connect to the redis server(s); to create a disconnected multiplexer

前端 未结 7 1677
刺人心
刺人心 2020-12-13 13:05

I have the following piece of code to connect to azure redis cache.

   public class CacheConnectionHelper
    {
        private static Lazy

        
7条回答
  •  难免孤独
    2020-12-13 13:50

    You should also pay attention to the last part of your error message, as it seems to provide very useful details about the reason why connection have failed.

    In your case:

    It was not possible to connect to the redis server(s); to create a disconnected multiplexer, disable AbortOnConnectFail. UnableToResolvePhysicalConnection on PING

    My case:

    It was not possible to connect to the redis server(s); to create a disconnected multiplexer, disable AbortOnConnectFail. Timeout

提交回复
热议问题