Redis 的哪些功能类似于 SortedSets 的 SDIFF

发布于 2025-01-10 18:37:10 字数 176 浏览 1 评论 0原文

Observations : 

1. SDIFF only works with Set. It doesn't support SortedSets.

查询:

  1. 在没有 SDIFF 的情况下,对于与 SDIFF 类似的用例,可以使用什么作为排序集
Observations : 

1. SDIFF only works with Set. It doesn't support SortedSets.

Query :

  1. In absence of SDIFF, what can be used for Sorted set for similar use-case as SDIFF

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

明月松间行 2025-01-17 18:37:10
  1. 简短的回答是否定的。排序集具有成员和分数。而已。但是,您可以使用 entityId 作为键的一部分,轻松地将元数据存储在 Redis 中的另一个键中。因此,例如,如果您的 entityIdfoo,您可以将该元数据存储在类似于 Entity:MetaData:foo 之类的键名称下。该键可以是一个简单的字符串,也可以是 Redis 中的任何数据结构。

  2. 使用ZDIFF。它类似于 SDIFF,但适用于排序集。

  1. Short answer is no. A Sorted Set has members and scores. Nothing more. However, you can easily store the metadata in another key in Redis using the entityId as part of the key. So, for example, if your entityId was foo you could store that metadata under a key name something like Entity:MetaData:foo. This key could be a simple String, or any data structure in Redis.

  2. Use ZDIFF. It's like SDIFF, but for Sorted Sets.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文