Redis STRLEN命令用於獲取儲存在鍵中的字串值的長度。當鍵包含非字串值時返回錯誤。
0
。下面是Redis SETRANGE
命令的基本語法。
redis 127.0.0.1:6379> STRLEN KEY_NAME
redis 127.0.0.1:6379> SET key1 "Hello World"
OK
redis 127.0.0.1:6379> STRLEN key1
(integer) 11
redis 127.0.0.1:6379> STRLEN key2
(integer) 0