Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,我的 redis 中有 100 个具有不同键和相同值的键值对现在我想使用值作为参考删除所有键值对我该怎么做
方法将与您在 Hash Map 中的操作方式相同:
遍历键空间中的所有键(使用 SCAN 命令)
获取每个键的值
如果值与您要查找的内容匹配:删除该键