Skip to content

Instantly share code, notes, and snippets.

@shawnweisfeld
Created February 26, 2015 15:14
Show Gist options
  • Save shawnweisfeld/d49e3a93f7bd9e1f22c7 to your computer and use it in GitHub Desktop.
Save shawnweisfeld/d49e3a93f7bd9e1f22c7 to your computer and use it in GitHub Desktop.
var configurationOptions = new ConfigurationOptions
{
EndPoints =
{
{ "server.redis.cache.windows.net", 6380 }
},
SyncTimeout = int.MaxValue,
Ssl = true,
Password = "mypassword"
};
_connection = ConnectionMultiplexer.Connect(configurationOptions);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment