Redis LLEN 命令用于获取列表(List)对象中元素的数量。 语法: LLEN key 返回值: 返回列表对象的长度。 示例: LPUSH mylist "world" LPUSH mylist "hello" LL..