OnlineJudge/utils/cache.py

7 lines
258 B
Python
Raw Normal View History

2017-08-15 12:32:14 +00:00
from django.conf import settings
from django_redis import get_redis_connection
2017-08-15 13:05:41 +00:00
judge_cache = get_redis_connection(settings.CACHE_JUDGE_QUEUE)
2017-08-15 12:32:14 +00:00
throttling_cache = get_redis_connection(settings.CACHE_THROTTLING)
default_cache = get_redis_connection("default")