我们从Python开源项目中,提取了以下50个代码示例,用于说明如何使用django.conf.settings.SESSION_CACHE_ALIAS。
def __init__(self, session_key=None): self._cache = caches[settings.SESSION_CACHE_ALIAS] super(SessionStore, self).__init__(session_key)
def __init__(self, session_key=None): self._cache = get_cache(settings.SESSION_CACHE_ALIAS) super(SessionStore, self).__init__(session_key)