Jamm\Memory\RedisServer::RESTORE PHP Метод

RESTORE() публичный Метод

Create a key using the provided serialized value, previously obtained using DUMP.
public RESTORE ( string $key, integer $ttl, string $serialized_value ) : boolean
$key string
$ttl integer If ttl is 0 the key is created without any expire, otherwise the specified expire time (in milliseconds) is set.
$serialized_value string
Результат boolean
    public function RESTORE($key, $ttl, $serialized_value)
    {
        return $this->_send(array('RESTORE', $key, $ttl, $serialized_value));
    }