高效访问 Redis 中主排序集的任意子集

发布于 2024-10-11 11:42:39 字数 54 浏览 4 评论 0原文

给定一个分数/权重快速变化的大型排序集,维护子集并按主集的顺序访问这些子集的最有效方法是什么?

Given a large sorted set with rapidly changing scores/weights, what's the most efficient way to maintain subsets and access those subsets in the master set's order?

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

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

发布评论

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

评论(1

青瓷清茶倾城歌 2024-10-18 11:42:39

为此,您有几个选项:

  • 更新超集中的分数,当您需要读取子集时,调用 ZINTERSTORE,并将子集权重设置为 0,这样结果就是带有超集中分数的子集。
  • 更新分数时,写入子集和超集。

最合适的选项取决于您需要优化的内容 - 读取、写入、内存或简单性。如何确定子集以及子集相对于更新数量的大小也可能会产生影响。

You have a couple of options for this:

  • Update scores in the superset and when you need to read the subset call ZINTERSTORE with subset weighting set to 0 so the result is the subset with scores from the superset.
  • When updating the scores, write to the subsets as well as the superset.

The most appropriate option will depend on what you need to optimise for - read, write, memory or simplicity. How the subsets are determined and the size of the sets relative to the number of updates may also have an impact.

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