예제 #1
0
파일: HashType.php 프로젝트: ig-hit/redis
 /**
  * @param string $key
  * @return int
  */
 public function count($key = '')
 {
     if (!$key) {
         return 0;
     }
     return $this->client->hLen($key);
 }