mirror of
https://github.com/redis/go-redis.git
synced 2025-07-28 06:42:00 +03:00
Clean up benchmarks.
This commit is contained in:
@ -830,7 +830,7 @@ func (c *Client) ZRangeByScore(key string, min, max string, offset, count int64)
|
||||
return c.zRangeByScore(key, min, max, false, offset, count)
|
||||
}
|
||||
|
||||
func (c *Client) ZRangeByScoreWithScores(key string, min, max string, offset, count int64) *StringSliceReq {
|
||||
func (c *Client) ZRangeByScoreWithScores(key, min, max string, offset, count int64) *StringSliceReq {
|
||||
return c.zRangeByScore(key, min, max, true, offset, count)
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user