■ IDatabase 인터페이스의 HashSet/HashGetAll 메소드를 사용해 해시값을 저장하고 구하는 방법을 보여준다.
▶ 예제 코드 (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 26 |
using System; using StackExchange.Redis; ConnectionMultiplexer multiplexer = ConnectionMultiplexer.Connect("192.168.29.197:6379"); IDatabase database = multiplexer.GetDatabase(); database.HashSet ( "hashKey1", new [] { new HashEntry("Name", "홍길동"), new HashEntry("Age" , 20 ) } ); HashEntry[] hashEntryArray = database.HashGetAll("hashKey1"); foreach(HashEntry entry in hashEntryArray) { Console.WriteLine($"{entry.Name} : {entry.Value}"); } |
※ 패키지 설치 : StackExchange.Redis