Learn R Programming

rredis (version 1.7.0)

redisLRange: Copy values from a list.

Description

Return the elements of a list between the start and end indices, inclusively.

Usage

redisLRange(key, start, end, ...)

Arguments

key
A key corresponding to a list.
start
The beginning index from which to read list elements.
end
The ending index.
...
Optional additional arguments. Specify raw=TRUE to skip de-serialization of the data.

Value

thrown if the specified key does not correspond to a list or if the key can't be found.

Details

List indices begin with 0. If the start or end indices are beyond the bounds of the list, return the list elements up to the index bounds.

References

http://redis.io/commands

See Also

redisLPop

Examples

Run this code
## Not run: 
# redisConnect()
# redisLPush('x',1)
# redisLPush('x',2)
# redisLPush('x',3)
# redisLRange('x',0,2)
# ## End(Not run)

Run the code above in your browser using DataLab