REDIS/jedis更新排序集合中所有成员的分数



REDIS中增加中等大小排序集的最佳方法是什么?(最好使用java驱动程序JEDIS)Set中有大约100-200K条记录。我想将它们的分数增加一个给定的双数。

之前

1 a
2 b
3 c

之后(增加1)

2 a
3 b
4 c

我想到的唯一可能的解决方案是:

  1. 通过网络获取所有已排序的集合(比如A)内容。(REDIS->应用程序)
  2. 创建一个管道,在循环中使用ZADD或ZINCRBY在同一集合a中递增
  3. 然后执行管道

还有其他更好的方法吗?

更新

以下是如何使用REDIS中的EVAL和Lua执行for循环以增加所有排序的集合成员。

local members = redis.call('zrange',KEYS[1],0,-1)
for i, member in ipairs(members) do
    redis.call('zincrby',KEYS[1],inc,member)
end

将其保存到一个字符串中,并使用您的驱动程序(本例中为java)运行eval。执行不会返回任何结果。

使用Jedis

// script is the script string
// 1 is the number of keys- keep it this way for this script
// myzset is the name of your sorted set
// 1.5 is the increment, you can use +/- values to inc/dec.
jedis.eval(script, 1, "myzset", "1.5");

客户端和redis之间的通信可能需要花费大量时间。为了避免这种情况,您可以对已排序的集合进行"SET类型"的复制。例如,假设您有一个排序集"key1":

1 a
2 b
3 c

你有一套"key2":

a, b, c

您可以轻松实现增量:

def increase_sorted_set(increment = 1)
  redis.ZINTERSTORE("key1", 2, "key1", "key2", "WEIGHTS", "1", increment)
end

Redis会给(未排序的)集合key2的每个成员一个默认分数1

例如:

redis 127.0.0.1:6379> ZADD key1 1 a 2 b 3 c
(integer) 3
redis 127.0.0.1:6379> SADD key2 a b c
(integer) 3
redis 127.0.0.1:6379> ZINTERSTORE key1 2 key1 key2 WEIGHTS 1 7
(integer) 3
redis 127.0.0.1:6379> ZRANGE key1 0 -1 WITHSCORES
1) "a"
2) "8"
3) "b"
4) "9"
5) "c"
6) "10"

相关内容

  • 没有找到相关文章

最新更新