Jamm\Memory\RedisServer::PEXPIREAT PHP Method

PEXPIREAT() public method

Set the expiration for a key as a UNIX timestamp specified in milliseconds
public PEXPIREAT ( string $key, integer $milliseconds_timestamp ) : integer
$key string
$milliseconds_timestamp integer the Unix time at which the key will expire
return integer 1 if the timeout was set, 0 if key does not exist or the timeout could not be set.
    public function PEXPIREAT($key, $milliseconds_timestamp)
    {
        return $this->_send(array('PEXPIREAT', $key, $milliseconds_timestamp));
    }