lTrim,listTrim

PHP Redis

lTrim, listTrim

Description

Trims an existing list so that it will contain only a specified range of elements.

它将截取LIST中指定范围内的元素组成一个新的LIST并指向KEY。简短解说就是截取LIST。

这个可不是JS,或者PHP中清空空格的意思。

Parameters

key start stop

Return value

Array
Bool return FALSE if the key identify a non-list value.

Example
$redis->rPush('key1', 'A');
$redis->rPush('key1', 'B');
$redis->rPush('key1', 'C');
$redis->lRange('key1', 0, -1); /* array('A', 'B', 'C') */
$redis->lTrim('key1', 0, 1);
$redis->lRange('key1', 0, -1); /* array('A', 'B') */