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

前端 未结 7 1648
刺人心
刺人心 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

    0 讨论(0)
提交回复
热议问题