我正在尝试使用我所使用的Stack Exchange Redis库进行HMSET,但无法弄清楚如何做。我知道HSET和HMSET之间的区别,我知道如何使用HSET,所以为什么我不能HMSET?我在这里想念东西吗?
答案 0 :(得分:0)
仅通过查看tests for the source code,看起来它确实支持HMSET:
var data = new HashEntry[] {
new HashEntry("foo", Encoding.UTF8.GetBytes("abc")),
new HashEntry("bar", Encoding.UTF8.GetBytes("def"))
};
conn.HashSetAsync(hashkey, data).ForAwait();