コード例 #1
0
ファイル: StringType.php プロジェクト: ig-hit/redis
 /**
  * @param $key
  * @return mixed
  */
 public function get($key)
 {
     if (is_array($key)) {
         return $this->client->mget($key);
     }
     return $this->client->get($key);
 }