Jamm\Memory\RedisServer::PSETEX PHP Méthode

PSETEX() public méthode

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
Résultat boolean
    public function PSETEX($key, $milliseconds, $value)
    {
        return $this->_send(array('PSETEX', $key, $milliseconds, $value));
    }