Vladimir Titov
Vladimir Titov

Reputation: 73

redis sorted set highest score

Is any simple method to get the highest score from Redis sorted set? I found this way, may be there is better ways to make this(in ruby):

all_scores = Redis.zrange('foo', 0, -1, with_scores: true) # => [["item 1", 2.5], ["item 2", 3.4]]
all_scores.flatten.last # => 3.4

It seems not the best way.

Upvotes: 7

Views: 7309

Answers (2)

Firdaus Adi Putra
Firdaus Adi Putra

Reputation: 71

For Redis 6, this is the command.

ZRANGE foo 0 0 REV

Upvotes: 1

Karthikeyan Gopall
Karthikeyan Gopall

Reputation: 5679

you can use ZREVRANGE command.

ZREVRANGE foo 0 0 withscores

This will give you the highest score and it's value.

http://redis.io/commands/zrevrange

Upvotes: 22

Related Questions