我们从Python开源项目中,提取了以下5个代码示例,用于说明如何使用django.conf.settings.REDIS_DB。
def get_redis_connection(): return redis.StrictRedis( host=settings.REDIS_HOST, port=settings.REDIS_PORT, db=settings.REDIS_DB, password=settings.REDIS_PASSWORD, )
def handle(self, *args, **options): if not options['coordinator-private-ip']: raise CommandError('Coordinator IP needs to be an IP address') coord_ip = options['coordinator-private-ip'].strip() redis_con = redis.StrictRedis(host=settings.REDIS_HOST, port=settings.REDIS_PORT, db=settings.REDIS_DB) redis_con.set('KAFKA_HOST', '%s:9092' % coord_ip) redis_con.set('COORDINATOR_ENDPOINT', 'http://%s:8000/coordinator/' % coord_ip)
def in_known_cidr_block(ip_address): redis_con = redis.StrictRedis(host=settings.REDIS_HOST, port=settings.REDIS_PORT, db=settings.REDIS_DB) cidrs = redis_con.get('cidrs') if not cidrs or not len(cidrs): return False return len(netaddr.all_matching_cidrs(ip_address, cidrs.split(','))) > 0
def save_to_redis(cidrs): try: redis_con = redis.StrictRedis(host=settings.REDIS_HOST, port=settings.REDIS_PORT, db=settings.REDIS_DB) redis_con.set('cidrs', ','.join(list(cidrs))) except Exception as exc: print exc
def get_config(item_name): try: redis_con = redis.StrictRedis(host=settings.REDIS_HOST, port=settings.REDIS_PORT, db=settings.REDIS_DB) value = redis_con.get(item_name) except Exception as exc: print exc return None if value and len(value): return value return None