I am trying to connect to the Preview Azure Redis Cache with the following code.
var options = new ConfigurationOptions();
options.EndPoints.Add("myname.redis.cache.windows.net", 6379);
options.Ssl = true;
options.Password = "VeryLongKeyCopiedFromPortal";
var connection = ConnectionMultiplexer.Connect(options);
When I do this I get the exception
"It was not possible to connect to the redis server(s); to create a disconnected multiplexer, disable AbortOnConnectFail"
What can be causing this?