This commit is contained in:
2023-10-05 00:20:43 +03:00
parent a04e81695d
commit 0de9270af9
3 changed files with 12 additions and 19 deletions

View File

@@ -1,5 +1,5 @@
import asyncio
import aioredis
import aredis
from settings import REDIS_URL
@@ -10,13 +10,10 @@ class RedisCache:
self._redis = None
async def connect(self):
pool = aioredis.ConnectionPool.from_url(
self._uri, encoding="utf-8", max_connections=10
)
self._redis = aioredis.Redis(connection_pool=pool)
self._redis = aredis.StrictRedis.from_url(self._uri, decode_responses=True)
async def disconnect(self):
await self._redis.wait_closed()
self._redis.connection_pool.disconnect()
self._redis = None
async def execute(self, command, *args, **kwargs):
@@ -28,29 +25,25 @@ class RedisCache:
except Exception:
pass
async def execute_pubsub(self, command, *args, **kwargs):
while not self._redis:
await asyncio.sleep(1)
try:
print("[redis] " + command + " " + " ".join(args))
return await self._redis.execute_pubsub(command, *args, **kwargs)
except Exception:
pass
async def subscribe(self, *channels):
if not self._redis:
await self.connect()
for channel in channels:
await self._redis.execute_pubsub("SUBSCRIBE", channel)
await self._redis.subscribe(channel)
self.pubsub_channels.append(channel)
async def unsubscribe(self, *channels):
if not self._redis:
return
for channel in channels:
await self._redis.execute_pubsub("UNSUBSCRIBE", channel)
await self._redis.unsubscribe(channel)
self.pubsub_channels.remove(channel)
async def publish(self, channel, data):
if not self._redis:
return
await self._redis.publish(channel, data)
async def lrange(self, key, start, stop):
print(f"[redis] LRANGE {key} {start} {stop}")
return await self._redis.lrange(key, start, stop)