Exemplo n.º 1
0
 public function llen($listName)
 {
     $key = new \Rediska_Key_List($listName);
     try {
         $length = $key->getLength();
     } catch (\Rediska_Exception $e) {
         throw new \VisitCounter\Exception\RedisException($e->getMessage(), 0, $e);
     }
     return $length;
 }