gpt4 book ai didi

redis - 从哈希中清除 X 键

转载 作者:IT王子 更新时间:2023-10-29 06:10:13 26 4
gpt4 key购买 nike

我的redis数据库中有3个哈希:

设置:最近的书

设置:坏书

设置:有趣的书

所有哈希都包含图书 ID 作为键。

我想从所有哈希值中删除 ID 为 234 的书。

我该怎么做:

  • Lua 脚本

  • 流水线

  • 其他?

最佳答案

使用 ServiceStack redis 客户端 API,您可以像这样管道化您的删除请求:

var client = new RedisClient("localhost", 6379);

using (var pipeline = client.CreatePipeline())
{
pipeline.QueueCommand(r => r.RemoveEntryFromHash("set:recentbooks", "234"));
pipeline.QueueCommand(r => r.RemoveEntryFromHash("set:badbooks", "234"));
pipeline.QueueCommand(r => r.RemoveEntryFromHash("set:funnybooks", "234"));

// All deletes will be sent at once.
pipeline.Flush();
}

关于redis - 从哈希中清除 X 键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19455109/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com