■ ConnectionMultiplexer 클래스의 Connect 정적 메소드를 사용시 SSL을 사용하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
using System; using StackExchange.Redis; ConfigurationOptions options = new ConfigurationOptions { EndPoints = { { "192.168.29.197", 6380 } }, Ssl = true, SyncTimeout = 5000 }; ConnectionMultiplexer multiplexer = ConnectionMultiplexer.Connect(options); Console.WriteLine(multiplexer.IsConnected); |
※ 패키지 설치 : StackExchange.Redis