Jamm\Memory\RedisServer::PSETEX PHP Method

PSETEX() public method

Set the value and expiration in milliseconds of a key
public PSETEX ( string $key, integer $milliseconds, string $value ) : boolean
$key string
$milliseconds integer
$value string
return boolean
    public function PSETEX($key, $milliseconds, $value)
    {
        return $this->_send(array('PSETEX', $key, $milliseconds, $value));
    }