| 12345678910111213 |
- import redis
- from app.core.config import settings
- pool = redis.ConnectionPool(
- host=settings.REDIS_HOST,
- port=settings.REDIS_PORT,
- db=settings.REDIS_DB,
- password=settings.REDIS_PASSWORD,
- decode_responses=True
- )
- redis_client = redis.Redis(connection_pool=pool)
|