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

前端 未结 7 1653
刺人心
刺人心 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:40

    For those maintaining older codebases, you may run into "It was not possible to connect to the redis server(s); to create a disconnected multiplexer, disable AbortOnConnectFail. UnableToResolvePhysicalConnection on PING"

    Once I upgraded to a more recent nuget package the error was still present but I got more error information: "The client and server cannot communicate, because they do not possess a common algorithm".

    Once I applied the registry keys mentioned here I was ok. For those that don't wish to make that global change I believe there has been a PR for a setting.

提交回复
热议问题