PEXPIRETIME

Syntax
PEXPIRETIME key
Available since:
7.0.0
Time complexity:
O(1)
ACL categories:
@keyspace, @read, @fast,

PEXPIRETIME has the same semantic as EXPIRETIME, but returns the absolute Unix expiration timestamp in milliseconds instead of seconds.

Examples

redis> SET mykey "Hello"
Failed to fetch
redis> PEXPIREAT mykey 33177117420000
Failed to fetch
redis> PEXPIRETIME mykey
Failed to fetch
redis>

RESP2/RESP3 Reply

One of the following:


Rate this page