Returns the length of the list stored at key.
redis.rpush("key", "a", "b", "c") assert redis.llen("key") == 3
The key of the list.
The length of the list at key.
Was this page helpful?