获取所有设置值?

z6psavjg  于 2021-06-10  发布在  Redis
关注(0)|答案(0)|浏览(171)

我试图获取一个键的所有值集,但发现每个值一次发送一个:

ZADD colors 0 "blue"
ZADD colors 1 "green"
ZADD colors 2 "red"
redis.zrangebyscore("colors", Range.create(0, Double.POSITIVE_INFINITY)).subscribe((c) -> {
  System.out.println(c);
});

这将导致:

"blue"
"green"
"red"

但是我想在订阅中以列表的形式收到这个。有没有办法把整个名单都拿回来?

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题