|
# -*- coding: utf-8 -*-
import redis_extensions as redis
def redis_conf(conf):
return {
'host': conf.get('HOST', 'localhost'),
'port': conf.get('PORT', 6379),
'password': '{}:{}'.format(conf.get('USER', ''), conf.get('PASSWORD', '')) if conf.get('USER') else '',
'db': conf.get('db', 0),
}
def redis_connect(conf):
return redis.StrictRedis(connection_pool=redis.ConnectionPool(**redis_conf(conf)))
|