From 1f2259fa3078d38048060a429837fb13f397686e Mon Sep 17 00:00:00 2001 From: dvora-h <67596500+dvora-h@users.noreply.github.com> Date: Mon, 7 Mar 2022 01:33:57 +0200 Subject: Add support for PEXPIRETIME (#1861) * add pexpiretime * skip test --- redis/commands/core.py | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'redis/commands/core.py') diff --git a/redis/commands/core.py b/redis/commands/core.py index cdbb267..3595677 100644 --- a/redis/commands/core.py +++ b/redis/commands/core.py @@ -1800,6 +1800,15 @@ class BasicKeyCommands(CommandsProtocol): when = int(time.mktime(when.timetuple())) * 1000 + ms return self.execute_command("PEXPIREAT", name, when) + def pexpiretime(self, key: str) -> int: + """ + Returns the absolute Unix timestamp (since January 1, 1970) in milliseconds + at which the given key will expire. + + For more information check https://redis.io/commands/pexpiretime + """ + return self.execute_command("PEXPIRETIME", key) + def psetex( self, name: KeyT, -- cgit v1.2.1