■ IServer 인터페이스의 Keys 메소드를 사용해 키를 나열하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
using System; using StackExchange.Redis; string serverAddress = "192.168.29.197:6379"; ConnectionMultiplexer multiplexer = ConnectionMultiplexer.Connect(serverAddress); IServer server = multiplexer.GetServer(serverAddress); foreach(RedisKey key in server.Keys(pattern : "*")) { Console.WriteLine(key); } |
※ 패키지 설치 : StackExchange.Redis