Redis LSET 用于设置列表 key 中 index 位置的元素值为 element
。 更多关于 index 参数的信息,详见 LINDEX。
当 index 超出列表索引范围时会返回错误ERR ERR index out of range
。
*返回值
*例子
redis>
RPUSH mylist "one"
(integer) 1redis> RPUSH mylist "two"
(integer) 2redis> RPUSH mylist "three"
(integer) 3redis> LSET mylist 0 "four"
"OK"redis> LSET mylist -2 "five"
"OK"redis> LRANGE mylist 0 -1
1) "four" 2) "five" 3) "three"