Jamm\Memory\RedisServer::DUMP PHP Method

DUMP() public method

The returned value can be synthesized back into a Redis key using the RESTORE command.
public DUMP ( string $key ) : string
$key string
return string
    public function DUMP($key)
    {
        return $this->_send(array('DUMP', $key));
    }