mirror of
https://github.com/redis/go-redis.git
synced 2025-06-14 01:21:30 +03:00
Fix ZRevRangeByScoreWithScores to return scores.
This commit is contained in:
committed by
Vladimir Mihailenco
parent
c955223298
commit
45e45f8422
@ -928,7 +928,7 @@ func (c *Client) ZRevRangeByScore(key, start, stop string, offset, count int64)
|
||||
}
|
||||
|
||||
func (c *Client) ZRevRangeByScoreWithScores(key, start, stop string, offset, count int64) *StringSliceReq {
|
||||
return c.zRevRangeByScore(key, start, stop, false, offset, count)
|
||||
return c.zRevRangeByScore(key, start, stop, true, offset, count)
|
||||
}
|
||||
|
||||
func (c *Client) ZRevRangeByScoreWithScoresMap(
|
||||
|
Reference in New Issue
Block a user