public class RedisConnection { private static Lazy lazyConnection = new Lazy(() => ConnectionMultiplexer.Connect("localhost")); public static ConnectionMultiplexer Connection { get { return lazyConnection.Value; } } public static void Reconnect() { lazyConnection = new Lazy(() => ConnectionMultiplexer.Connect("localhost")); } }