redis strlen 命令用于获取指定 key 所储存的字符串值的长度。当 key 储存的不是字符串值时,返回一个错误。
语法
redis strlen 命令基本语法如下:
redis 127.0.0.1:6379> strlen key_name
可用版本
>= 2.2.0
返回值
字符串值的长度。 当 key 不存在时,返回 0。
实例
# 获取字符串的长度 redis> set mykey "hello world" ok redis> strlen mykey (integer) 11 # 不存在的 key 长度为 0 redis> strlen nonexisting (integer) 0