redisZRangeByScore: redisZRangeByScore

Description Usage Arguments Details Value Author(s) References

View source: R/zsetVal.R

Description

Return the all the elements in the sorted set at key with a score between min and max (including elements with score equal to min or max).

Usage

1
2
redisZRangeByScore(key, min, max, offset = NULL, count = NULL,
                   withscores = FALSE, ...)

Arguments

key

The set name.

min

Minimum score.

max

Maximum score.

offset

Limit the results by excluding the first offset items. Requires also the use of count.

count

Limit the results to the first count items. Requires also the use of offset.

withscores

Also return the scores.

...

Optional additional arguments. Specify raw=TRUE to skip de-serialization of the data.

Details

The offset and count arguments must both be specified if used.

Value

See the Redis documentation for more information.

Author(s)

B. W. Lewis

References

http://redis.io/commands


bwlewis/rredis documentation built on Jan. 3, 2022, 4:53 p.m.