Exemple #1
0
 /**
  * @param $key
  * @return mixed
  */
 public function get($key)
 {
     if (is_array($key)) {
         return $this->client->mget($key);
     }
     return $this->client->get($key);
 }