Jamm\Memory\RedisServer::PSETEX PHP 메소드

PSETEX() 공개 메소드

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