What's new in Valkey 9.0? Discover new features and improvements. Read the announcement.

PEXPIRETIME

Returns the expiration time of a key as a Unix milliseconds timestamp.

Usage
PEXPIRETIME key
Complexity
O(1)
Since
7.0.0
ACL Categories
@fast, @keyspace, @read
Command flags
READONLY, FAST

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

Examples

127.0.0.1:6379> SET mykey "Hello"
OK
127.0.0.1:6379> PEXPIREAT mykey 33177117420000
(integer) 1
127.0.0.1:6379> PEXPIRETIME mykey
(integer) 33177117420000

Replies

RESP2

One of the following:

RESP3

One of the following: