如果index参数的值不在列表的区间范围内(out of range),返回nil。 127.0.0.1:6379> rpush ages0011223344//创建列表ages(integer)5127.0.0.1:6379> lrange ages0-1//查看所有元素1)"00"2)"11"3)"22"4)"33"5)"44"127.0.0.1:6379> llen ages//列表长度(integer)5127.0.0.1:6379> lindex ages0//列表第...
51CTO博客已为您找到关于redis out of range的相关内容,包含IT学习相关文档代码介绍、相关教程视频课程,以及redis out of range问答内容。更多redis out of range相关解答可以来51CTO博客参与分享和学习,帮助广大IT技术人实现成长和进步。
// 1. 单个查询 lindex key index // t_list.c, 通过下标查找元素值 void lindexCommand(client *c) { robj *o = lookupKeyReadOrReply(c,c->argv[1],shared.nullbulk); // 如果key本身就不存在,直接返回,空已响应 if (o == NULL || checkType(c,o,OBJ_LIST)) return; long index; robj *...
Returns the element at indexindexin the list stored atkey. The index is zero-based, so0means the first element,1the second element and so on. Negative indices can be used to designate elements starting at the tail of the list. Here,-1means the last element,-2means the penultimate and ...
说明:如果 index 参数的值不在列表的区间范围内(out of range),返回 nil 。 4、lset 格式:LSET key index value 功能:将列表 key 下标为 index 的元素的值设置为 value 。 说明:当 index 参数超出范围,或对一个空列表(key 不存在)进行 LSET 时,返回一个错误。
127.0.0.1:6379> llen mylist (integer) 2 # 不存在的key 127.0.0.1:6379> llen notexistkey (integer) 0 # value类型不是列表,llen报错 127.0.0.1:6379> set key1 value1 OK 127.0.0.1:6379> llen key1 (error) WRONGTYPE Operation against a key holding the wrong kind of value ...
127.0.0.1:6379> LSET mylist 1 hello OK 127.0.0.1:6379> lrange mylist 0 -1 1) "k2" 2) "hello" 127.0.0.1:6379> LSET mylist 10 world (error) ERR index out of range LINSERT key BEFORE|AFTER pivot element list 中在指定元素的前面或者后面添加数据 ...
15 OK **127.0.0.1:6379[15]> select 18** **(error) ERR DB index is out of range 不...
(error) ERR index out of range redis 127.0.0.1:6379> ltrim mykey 0 2 #仅保留索引值0到2之间的3个元素,注意第0个和第2个元素均被保留。 OK redis 127.0.0.1:6379> lrange mykey 0 -1 #查看trim后的结果。 1) "c" 2) "e" 3) "c" ...