You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
289 B
15 lines
289 B
from redis import Redis, ConnectionPool
|
|
|
|
from config.settings import base as settings
|
|
|
|
|
|
|
|
pool = ConnectionPool.from_url(url= settings.REDIS_URL,max_connections=100)
|
|
|
|
|
|
class RedisConfig:
|
|
|
|
def __init__(self):
|
|
self.redis = Redis(connection_pool=pool, decode_responses=True)
|
|
|
|
|