■ ConnectionMultiplexer 클래스의 Connect 정적 메소드를 사용시 SSL을 사용하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 |
using System; using StackExchange.Redis; ConnectionMultiplexer multiplexer =ConnectionMultiplexer.Connect("192.168.29.197:6380,ssl=True"); Console.WriteLine(multiplexer.IsConnected); |
※ 패키지 설치 : StackExchange.Redis