■ IServer 인터페이스의 Info 메소드를 사용해 서버 정보를 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
using System; using System.Collections.Generic; using System.Linq; using StackExchange.Redis; string serverAddress = "192.168.29.197:6379"; ConnectionMultiplexer multiplexer = ConnectionMultiplexer.Connect($"{serverAddress},allowAdmin=true"); IServer server = multiplexer.GetServer(serverAddress); IGrouping<string, KeyValuePair<string, string>>[] groupingArray = server.Info(); for(int i = 0; i < groupingArray.Length; i++) { Console.WriteLine(groupingArray[i].Key); foreach(KeyValuePair<string, string> keyValuePair in groupingArray[i]) { Console.WriteLine("{0} -> {1}", keyValuePair.Key, keyValuePair.Value); } } |
※ 패키지 설치 : StackExchange.Redis