■ ConnectionMultiplexer 클래스의 GetEndPoints 메소드를 사용해 엔드포인트 배열을 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 |
using System; using System.Net; using StackExchange.Redis; ConnectionMultiplexer multiplexer = ConnectionMultiplexer.Connect("192.168.29.197:6379"); foreach(EndPoint endPoint in multiplexer.GetEndPoints()) { Console.WriteLine(endPoint); } |
※ 패키지 설치 : StackExchange.Redis