lset
LSET
LSET key index value
自1.0.0起可用。
时间复杂度:
O(N)其中N是列表的长度。设置列表的第一个或最后一个元素是O(1)。
将列表元素设置index
为value
。有关index
参数的更多信息,请参阅LINDEX。
超出范围索引会返回错误。
返回值
例子
redis> RPUSH mylist "one" (integer) 1 redis> RPUSH mylist "two" (integer) 2 redis> RPUSH mylist "three" (integer) 3 redis> LSET mylist 0 "four" "OK" redis> LSET mylist -2 "five" "OK" redis> LRANGE mylist 0 -1 1) "four" 2) "five" 3) "three"