■ IServer 인터페이스의 ClientList 메소드를 사용해 클라이언트 정보를 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
using System; using StackExchange.Redis; string serverAddress = "192.168.29.197:6379"; ConnectionMultiplexer multiplexer = ConnectionMultiplexer.Connect($"{serverAddress},allowAdmin=true"); IServer server = multiplexer.GetServer(serverAddress); ClientInfo[] clientInfoArray = server.ClientList(); foreach(ClientInfo clientInfo in clientInfoArray) { Console.WriteLine(clientInfo.Address); } |
※ 패키지 설치 : StackExchange.Redis