Back to Yugabyte Db

PEXPIREAT

docs/content/stable/yedis/api/pexpireat.md

2026.1.0.0-b29585 B
Original Source

Synopsis

PEXPIREAT key ttl-as-timestamp

PEXPIREAT has the same effect as EXPIREAT, but the Unix timestamp at which the key will expire is specified in milliseconds instead of seconds.

Return value

Returns integer reply, specifically 1 if the timeout was set and 0 if key does not exist.

Examples

sh
$ SET yugakey "Yugabyte"
"OK"
sh
$ PEXPIREAT yugakey 1555555555005
(integer) 1
sh
$ PTTL yugakey
(integer) 18674452994

See also

expireat, ttl, pttl, set