PEXPIREAT

Syntax

  1. PEXPIREAT key unix-time-milliseconds

Time complexity: O(1)

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

Return

Integer reply, specifically:

  • 1 if the timeout was set.
  • 0 if the timeout was not set. e.g. key doesn’t exist, or operation skipped due to the provided arguments.

Examples

  1. dragonfly> SET mykey "Hello"
  2. "OK"
  3. dragonfly> PEXPIREAT mykey 1555555555005
  4. (integer) 1
  5. dragonfly> TTL mykey
  6. (integer) -2
  7. dragonfly> PTTL mykey
  8. (integer) -2