Django.core.exceptions.ImproperlyConfigured:

use*_*629 1 python django caching redis

在ubuntu ec2节点上安装redis和django之后,基于http://michal.karzynski.pl/blog/2013/07/14/using-redis-as-django-session-store-and-cache-backend/,我一直在尝试在命令行中试用低级缓存api(https://docs.djangoproject.com/en/1.7/topics/cache/#the-low-level-cache-api)

 Python 3.4.0 (default, Apr 11 2014, 13:05:11)
 [GCC 4.8.2] on linux
 Type "help", "copyright", "credits" or "license" for more information.
 >>> import django
 >>> import redis
 >>> from django.core.cache import cache
 Traceback (most recent call last):
   File "<stdin>", line 1, in <module>
   File "/home/ubuntu/.virtualenvs/env1/lib/python3.4/site-packages/django/core/cache/__init__.py", line 34, in <module>
     if DEFAULT_CACHE_ALIAS not in settings.CACHES:
   File "/home/ubuntu/.virtualenvs/env1/lib/python3.4/site-packages/django/conf/__init__.py", line 46, in __getattr__
     self._setup(name)
   File "/home/ubuntu/.virtualenvs/env1/lib/python3.4/site-packages/django/conf/__init__.py", line 40, in _setup
     % (desc, ENVIRONMENT_VARIABLE))
 django.core.exceptions.ImproperlyConfigured: Requested setting CACHES, but settings are not configured. You must either define the environment variable DJANGO_SETTINGS_MODULE or call settings.configure() before accessing settings.
Run Code Online (Sandbox Code Playgroud)

我有一个django项目,并设置了中间件看起来像:

MIDDLEWARE_CLASSES = (
    'django.middleware.cache.UpdateCacheMiddleware',    # This must be first on the list
    'django.middleware.common.CommonMiddleware',
    'django.contrib.sessions.middleware.SessionMiddleware',
    'django.middleware.csrf.CsrfViewMiddleware',
    'django.contrib.auth.middleware.AuthenticationMiddleware',
    'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
    'django.contrib.messages.middleware.MessageMiddleware',
    'django.middleware.clickjacking.XFrameOptionsMiddleware',
    'django.middleware.cache.FetchFromCacheMiddleware', # This must be last
)
Run Code Online (Sandbox Code Playgroud)

我怎样才能使这个工作?

cat*_*ran 5

要试验django,您应该使用以下命令运行shell:

python manage.py shell
Run Code Online (Sandbox Code Playgroud)

这将加载项目的设置.