Source code for stream_framework.storage.redis.connection

import redis
from stream_framework import settings

connection_pool = None


[docs]def get_redis_connection(server_name='default'): ''' Gets the specified redis connection ''' global connection_pool if connection_pool is None: connection_pool = setup_redis() pool = connection_pool[server_name] return redis.StrictRedis(connection_pool=pool)
[docs]def setup_redis(): ''' Starts the connection pool for all configured redis servers ''' pools = {} for name, config in settings.STREAM_REDIS_CONFIG.items(): pool = redis.ConnectionPool( host=config['host'], port=config['port'], password=config.get('password'), db=config['db'], decode_responses=True ) pools[name] = pool return pools