Redis Llen 命令
Redis 教程
· 2019-03-07 13:12:00
Redis Llen 命令用于返回列表的长度。 如果列表 key 不存在,则 key 被解释为一个空列表,返回 0 。 如果 key 不是列表类型,返回一个错误。
语法
redis Llen 命令基本语法如下:
redis 127.0.0.1:6379> LLEN KEY_NAME
可用版本
>= 1.0.0
返回值
列表的长度。
实例
redis 127.0.0.1:6379> RPUSH list1 "foo" (integer) 1 redis 127.0.0.1:6379> RPUSH list1 "bar" (integer) 2 redis 127.0.0.1:6379> LLEN list1 (integer) 2
点击查看所有 Redis 教程 文章: https://codercto.com/courses/l/33.html
High Performance Python
Micha Gorelick、Ian Ozsvald / O'Reilly Media / 2014-9-10 / USD 39.99
If you're an experienced Python programmer, High Performance Python will guide you through the various routes of code optimization. You'll learn how to use smarter algorithms and leverage peripheral t......一起来看看 《High Performance Python》 这本书的介绍吧!