Skip to content

Add support for PEXPIRE command's option #2026

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Mar 14, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 29 additions & 5 deletions redis/commands/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -1775,17 +1775,41 @@ def persist(self, name: KeyT) -> ResponseT:
"""
return self.execute_command("PERSIST", name)

def pexpire(self, name: KeyT, time: ExpiryT) -> ResponseT:
def pexpire(
self,
name: KeyT,
time: ExpiryT,
nx: bool = False,
xx: bool = False,
gt: bool = False,
lt: bool = False,
) -> ResponseT:
"""
Set an expire flag on key ``name`` for ``time`` milliseconds.
``time`` can be represented by an integer or a Python timedelta
object.
Set an expire flag on key ``name`` for ``time`` milliseconds
with given ``option``. ``time`` can be represented by an
integer or a Python timedelta object.

Valid options are:
NX -> Set expiry only when the key has no expiry
XX -> Set expiry only when the key has an existing expiry
GT -> Set expiry only when the new expiry is greater than current one
LT -> Set expiry only when the new expiry is less than current one

For more information check https://redis.io/commands/pexpire
"""
if isinstance(time, datetime.timedelta):
time = int(time.total_seconds() * 1000)
return self.execute_command("PEXPIRE", name, time)

exp_option = list()
if nx:
exp_option.append("NX")
if xx:
exp_option.append("XX")
if gt:
exp_option.append("GT")
if lt:
exp_option.append("LT")
return self.execute_command("PEXPIRE", name, time, *exp_option)

def pexpireat(self, name: KeyT, when: AbsExpiryT) -> ResponseT:
"""
Expand Down
27 changes: 27 additions & 0 deletions tests/test_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -1234,6 +1234,33 @@ def test_pexpire(self, r):
assert r.persist("a")
assert r.pttl("a") == -1

@skip_if_server_version_lt("7.0.0")
def test_pexpire_option_nx(self, r):
assert r.set("key", "val") is True
assert r.pexpire("key", 60000, nx=True) is True
assert r.pexpire("key", 60000, nx=True) is False

@skip_if_server_version_lt("7.0.0")
def test_pexpire_option_xx(self, r):
assert r.set("key", "val") is True
assert r.pexpire("key", 60000, xx=True) is False
assert r.pexpire("key", 60000) is True
assert r.pexpire("key", 70000, xx=True) is True

@skip_if_server_version_lt("7.0.0")
def test_pexpire_option_gt(self, r):
assert r.set("key", "val") is True
assert r.pexpire("key", 60000) is True
assert r.pexpire("key", 70000, gt=True) is True
assert r.pexpire("key", 50000, gt=True) is False

@skip_if_server_version_lt("7.0.0")
def test_pexpire_option_lt(self, r):
assert r.set("key", "val") is True
assert r.pexpire("key", 60000) is True
assert r.pexpire("key", 50000, lt=True) is True
assert r.pexpire("key", 70000, lt=True) is False

@skip_if_server_version_lt("2.6.0")
def test_pexpireat_datetime(self, r):
expire_at = redis_server_time(r) + datetime.timedelta(minutes=1)
Expand Down