■ IDatabase 인터페이스의 KeyRandom 메소드를 사용해 임의의 저장된 키를 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 |
using System; using StackExchange.Redis; ConnectionMultiplexer multiplexer = ConnectionMultiplexer.Connect("192.168.29.197:6379"); IDatabase database = multiplexer.GetDatabase(); string randomKey = database.KeyRandom(); Console.WriteLine(randomKey); |
※ 패키지 설치 : StackExchange.Redis