Cml\Cache\Redis::get PHP Method

get() public method

根据key取值
public get ( mixed $key ) : boolean | array
$key mixed 要获取的缓存key
return boolean | array | array
    public function get($key)
    {
        $return = json_decode($this->hash($key)->get($key), true);
        is_null($return) && ($return = false);
        return $return;
        //orm层做判断用
    }