From d71fd6264d58795c50b9350d7c39677b671e0896 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 17 Jul 2021 09:34:48 +0200 Subject: Merging upstream version 1.9.4. Signed-off-by: Daniel Baumann --- iredis/data/commands/expiretime.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 iredis/data/commands/expiretime.md (limited to 'iredis/data/commands/expiretime.md') diff --git a/iredis/data/commands/expiretime.md b/iredis/data/commands/expiretime.md new file mode 100644 index 0000000..1c4c815 --- /dev/null +++ b/iredis/data/commands/expiretime.md @@ -0,0 +1,22 @@ +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. + +@return + +@integer-reply: Expiration Unix timestamp in seconds, or a negative value in +order to signal an error (see the description below). + +- The command returns `-1` if the key exists but has no associated expiration + time. +- The command returns `-2` if the key does not exist. + +@examples + +```cli +SET mykey "Hello" +EXPIREAT mykey 33177117420 +EXPIRETIME mykey +``` -- cgit v1.2.3