Skip to content

Commit

Permalink
Add support for hashmaps
Browse files Browse the repository at this point in the history
  • Loading branch information
kysre committed Jan 26, 2024
1 parent d94a7f9 commit 6e8f76c
Show file tree
Hide file tree
Showing 3 changed files with 125 additions and 0 deletions.
20 changes: 20 additions & 0 deletions django_redis/cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,3 +184,23 @@ def close(self, **kwargs):
@omit_exception
def touch(self, *args, **kwargs):
return self.client.touch(*args, **kwargs)

@omit_exception
def hset(self, *args, **kwargs):
return self.client.hset(*args, **kwargs)

Check warning on line 190 in django_redis/cache.py

View check run for this annotation

Codecov / codecov/patch

django_redis/cache.py#L189-L190

Added lines #L189 - L190 were not covered by tests

@omit_exception
def hdel(self, *args, **kwargs):
return self.client.hdel(*args, **kwargs)

Check warning on line 194 in django_redis/cache.py

View check run for this annotation

Codecov / codecov/patch

django_redis/cache.py#L193-L194

Added lines #L193 - L194 were not covered by tests

@omit_exception
def hlen(self, *args, **kwargs):
return self.client.hlen(*args, **kwargs)

Check warning on line 198 in django_redis/cache.py

View check run for this annotation

Codecov / codecov/patch

django_redis/cache.py#L197-L198

Added lines #L197 - L198 were not covered by tests

@omit_exception
def hkeys(self, *args, **kwargs):
return self.client.hkeys(*args, **kwargs)

Check warning on line 202 in django_redis/cache.py

View check run for this annotation

Codecov / codecov/patch

django_redis/cache.py#L201-L202

Added lines #L201 - L202 were not covered by tests

@omit_exception
def hexists(self, *args, **kwargs):
return self.client.hexists(*args, **kwargs)

Check warning on line 206 in django_redis/cache.py

View check run for this annotation

Codecov / codecov/patch

django_redis/cache.py#L205-L206

Added lines #L205 - L206 were not covered by tests
70 changes: 70 additions & 0 deletions django_redis/client/default.py
Original file line number Diff line number Diff line change
Expand Up @@ -813,3 +813,73 @@ def touch(
# Convert to milliseconds
timeout = int(timeout * 1000)
return bool(client.pexpire(key, timeout))

def hset(

Check warning on line 817 in django_redis/client/default.py

View check run for this annotation

Codecov / codecov/patch

django_redis/client/default.py#L817

Added line #L817 was not covered by tests
self,
name: str,
key: Any,
value: Any,
version: Optional[int] = None,
client: Optional[Redis] = None,
) -> int:
"""
Set the value of hash name at key to value.
"""
if client is None:
client = self.get_client(write=True)
key = self.make_key(key, version=version)
return int(client.hset(name, key, value))

Check warning on line 831 in django_redis/client/default.py

View check run for this annotation

Codecov / codecov/patch

django_redis/client/default.py#L830-L831

Added lines #L830 - L831 were not covered by tests

def hdel(

Check warning on line 833 in django_redis/client/default.py

View check run for this annotation

Codecov / codecov/patch

django_redis/client/default.py#L833

Added line #L833 was not covered by tests
self,
name: str,
key: Any,
version: Optional[int] = None,
client: Optional[Redis] = None,
) -> int:
"""
Remove keys from hash name.
"""
if client is None:
client = self.get_client(write=True)
key = self.make_key(key, version=version)
return int(client.hdel(name, key))

Check warning on line 846 in django_redis/client/default.py

View check run for this annotation

Codecov / codecov/patch

django_redis/client/default.py#L845-L846

Added lines #L845 - L846 were not covered by tests

def hlen(
self,
name: str,
client: Optional[Redis] = None,
) -> int:
"""
Return the number of items in hash name.
"""
if client is None:
client = self.get_client(write=False)
return int(client.hlen(name))

def hkeys(
self,
name: str,
client: Optional[Redis] = None,
) -> List:
"""
Return a list of keys in hash name.
"""
if client is None:
client = self.get_client(write=False)
return client.hkeys(name)

def hexists(

Check warning on line 872 in django_redis/client/default.py

View check run for this annotation

Codecov / codecov/patch

django_redis/client/default.py#L872

Added line #L872 was not covered by tests
self,
name: str,
key: Any,
version: Optional[int] = None,
client: Optional[Redis] = None,
) -> bool:
"""
Return True if key exists in hash name, else False.
"""
if client is None:
client = self.get_client(write=False)
key = self.make_key(key, version=version)
return bool(client.hexists(name, key))

Check warning on line 885 in django_redis/client/default.py

View check run for this annotation

Codecov / codecov/patch

django_redis/client/default.py#L884-L885

Added lines #L884 - L885 were not covered by tests
35 changes: 35 additions & 0 deletions tests/test_backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -797,3 +797,38 @@ def test_clear(self, cache: RedisCache):
cache.clear()
value_from_cache_after_clear = cache.get("foo")
assert value_from_cache_after_clear is None

def test_hset(self, cache: RedisCache):
cache.hset("foo_hash1", "foo1", "bar1")
cache.hset("foo_hash1", "foo2", "bar2")
assert cache.hlen("foo_hash1") == 2

Check warning on line 804 in tests/test_backend.py

View check run for this annotation

Codecov / codecov/patch

tests/test_backend.py#L801-L804

Added lines #L801 - L804 were not covered by tests

def test_hdel(self, cache: RedisCache):
cache.hset("foo_hash2", "foo1", "bar1")
cache.hset("foo_hash2", "foo2", "bar2")
assert cache.hlen("foo_hash2") == 2
cache.hdel("foo_hash2", "foo1")
assert cache.hlen("foo_hash2") == 1
assert not cache.hexists("foo_hash2", "foo1")
assert cache.hexists("foo_hash2", "foo2")

Check warning on line 813 in tests/test_backend.py

View check run for this annotation

Codecov / codecov/patch

tests/test_backend.py#L806-L813

Added lines #L806 - L813 were not covered by tests

def test_hlen(self, cache: RedisCache):
assert cache.hlen("foo_hash3") == 0
cache.hset("foo_hash3", "foo1", "bar1")
assert cache.hlen("foo_hash3") == 1
cache.hset("foo_hash3", "foo2", "bar2")
assert cache.hlen("foo_hash3") == 2

Check warning on line 820 in tests/test_backend.py

View check run for this annotation

Codecov / codecov/patch

tests/test_backend.py#L815-L820

Added lines #L815 - L820 were not covered by tests

def test_hkeys(self, cache: RedisCache):
cache.hset("foo_hash4", "foo1", "bar1")
cache.hset("foo_hash4", "foo2", "bar2")
cache.hset("foo_hash4", "foo3", "bar3")
keys = cache.hkeys("foo_hash4")
assert len(keys) == 3
for i in range(len(keys)):
assert keys[i] == f"foo{i + 1}"

Check warning on line 829 in tests/test_backend.py

View check run for this annotation

Codecov / codecov/patch

tests/test_backend.py#L822-L829

Added lines #L822 - L829 were not covered by tests

def test_hexists(self, cache: RedisCache):
cache.hset("foo_hash5", "foo1", "bar1")
assert cache.hexists("foo_hash5", "foo1")
assert not cache.hexists("foo_hash5", "foo")

Check warning on line 834 in tests/test_backend.py

View check run for this annotation

Codecov / codecov/patch

tests/test_backend.py#L831-L834

Added lines #L831 - L834 were not covered by tests

0 comments on commit 6e8f76c

Please sign in to comment.