mirror of https://github.com/zulip/zulip.git
Django 1.10: Use `caches` object to access cache.
This commit is contained in:
parent
b1d740afaa
commit
d81446805c
|
@ -4,7 +4,7 @@ from __future__ import print_function
|
||||||
from functools import wraps
|
from functools import wraps
|
||||||
|
|
||||||
from django.core.cache import cache as djcache
|
from django.core.cache import cache as djcache
|
||||||
from django.core.cache import get_cache
|
from django.core.cache import caches
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
from django.db.models import Q
|
from django.db.models import Q
|
||||||
from django.core.cache.backends.base import BaseCache
|
from django.core.cache.backends.base import BaseCache
|
||||||
|
@ -101,7 +101,7 @@ def get_cache_backend(cache_name):
|
||||||
# type: (Optional[str]) -> BaseCache
|
# type: (Optional[str]) -> BaseCache
|
||||||
if cache_name is None:
|
if cache_name is None:
|
||||||
return djcache
|
return djcache
|
||||||
return get_cache(cache_name)
|
return caches[cache_name]
|
||||||
|
|
||||||
def cache_with_key(keyfunc, cache_name=None, timeout=None, with_statsd_key=None):
|
def cache_with_key(keyfunc, cache_name=None, timeout=None, with_statsd_key=None):
|
||||||
# type: (Any, Optional[str], Optional[int], Optional[str]) -> Any
|
# type: (Any, Optional[str], Optional[int], Optional[str]) -> Any
|
||||||
|
|
Loading…
Reference in New Issue