LLEN
LLEN key
@read, @list, @fast, Returns the length of the list stored at key. If key does not exist, it is interpreted as an empty list and 0 is returned. An error is returned when the value stored at key is not a list.
Integer reply: the length of the list at key.
LPUSH mylist "World" LPUSH mylist "Hello" LLEN mylist
© 2006–2022 Salvatore Sanfilippo
Licensed under the Creative Commons Attribution-ShareAlike License 4.0.
https://redis.io/commands/llen/