EXPIRETIME
EXPIRETIME key
@keyspace, @read, @fast, Returns the absolute Unix timestamp (since January 1, 1970) in seconds at which the given key will expire.
See also the PEXPIRETIME command which returns the same information with milliseconds resolution.
Integer reply: Expiration Unix timestamp in seconds, or a negative value in order to signal an error (see the description below).
-1 if the key exists but has no associated expiration time.-2 if the key does not exist.SET mykey "Hello" EXPIREAT mykey 33177117420 EXPIRETIME mykey
© 2006–2022 Salvatore Sanfilippo
Licensed under the Creative Commons Attribution-ShareAlike License 4.0.
https://redis.io/commands/expiretime/