示例#1
0
文件: ListType.php 项目: ig-hit/redis
 /**
  * @param string $key
  * @return int
  */
 public function count($key = '')
 {
     if (!$key) {
         return 0;
     }
     return $this->client->lLen($key);
 }