Trim a list.
Trim an existing list so that it will contain only the specified range of elements specified.
redisLTrim(key, start, end)
key |
A key corresponding to a Redis list object. |
start |
The starting list index at which to trim. |
end |
The ending list index at which to trim. |
Start and end are zero-based indexes. 0 is the first element of the list (the list head), 1 the next element and so on.
TRUE if successful. An error is thrown if the key does not exist or correspond to a list value.
B. W. Lewis
http://redis.io/commands
## Not run: redisConnect() redisLPush('x',1) redisLPush('x',2) redisLPush('x',3) redisLTrim('x',0,1) redisLRange('x',0,99) ## End(Not run)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.