高效访问 Redis 中主排序集的任意子集
给定一个分数/权重快速变化的大型排序集,维护子集并按主集的顺序访问这些子集的最有效方法是什么?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为此,您有几个选项:
最合适的选项取决于您需要优化的内容 - 读取、写入、内存或简单性。如何确定子集以及子集相对于更新数量的大小也可能会产生影响。
You have a couple of options for this:
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.