是Redis的新手。我可以使用此命令将数据存储和检索到redis
hmset user:user1 12 13 14 15
也可以通过
检索数据hgetall user:user1
我想在我的c#程序中使用stackExchange.redis做同样的事情。 我该如何在c#中做到这一点?
答案 0 :(得分:11)
要在散列中设置多个值,可以调用以下HashSet方法重载:
ConnectionMultiplexer redis = ConnectionMultiplexer.Connect("localhost");
IDatabase db = redis.GetDatabase();
db.HashSet("user:user1", new HashEntry[] { new HashEntry("12", "13"), new HashEntry("14", "15") });