ManaPHP\Cache\Adapter\Redis::get PHP Method

get() public method

public get ( string $key ) : string | false
$key string
return string | false
    public function get($key)
    {
        return $this->redis->get($this->_prefix . $key);
    }