cache-fixed
Some checks failed
Deploy to core / deploy (push) Failing after 15m39s

This commit is contained in:
2024-02-21 17:37:58 +03:00
parent 63f5a708b7
commit e69046a1f8
6 changed files with 63 additions and 44 deletions

View File

@@ -52,13 +52,6 @@ class RedisCache:
return
await self._client.publish(channel, data)
async def hset(self, hash_key: str, fields_values: dict):
return await self._client.hset(hash_key, mapping=fields_values)
async def hget(self, hash_key: str):
return await self._client.hget(hash_key)
redis = RedisCache()