Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道是否只能lrange获得一个列表Redis?它需要end参数,如果我想要完整的列表,我必须先用它llen来获取长度。像这样:
lrange
Redis
end
llen
redis.lrange("myList", 0, llen("myList"));
是否有任何方法可以直接获取完整列表?
您可以使用 -1 作为最后一个元素的索引。这将为您提供整个列表:
lrange mylist 0 -1
这将获得整个列表,但最后一个元素
lrange mylist 0 -2
等等……
顺便说一句,这一切都写在文档中。