我在ubuntu EC2节点上有一个django项目,我想设置一个缓存,我正在关注http://michal.karzynski.pl/blog/2013/07/14/using-redis-as-django-session-store-and-cache-backend/以使用redis。在文章中,作者提到了https://docs.djangoproject.com/en/1.7/topics/cache/,并且我可以做到:
(env1)ubuntu@ip-172-31-22-65:~/projects/tp$ python manage.py shell
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.
(InteractiveConsole)
>>> import django
>>> import redis
>>> from django.core.cache import cache
>>> cache.set('my_key','hi world')
>>> cache.get('my_key')
'hi world'
我当前的django视图包含;
def index(token):
html = calculator(token)
print('here1')
import redis
from django.core.cache import cache
cache.set('my_key', 'hello, world!', 60*60*12)
print('here2')
return html
但是当我触发索引功能时,没有任何内容保存到缓存中。我从命令行检查了一下。
如何让缓存正常工作?
编辑:
>>> print(settings.CACHES)
{'default': {'BACKEND': 'django.core.cache.backends.locmem.LocMemCache'}}
答案 0 :(得分:3)
关键点是你的CACHES配置,它应该是:
CACHES = {
'default': {
'BACKEND': 'redis_cache.RedisCache',
'LOCATION': '/var/run/redis/redis.sock',
},
}
(cf http://michal.karzynski.pl/blog/2013/07/14/using-redis-as-django-session-store-and-cache-backend/)
答案 1 :(得分:0)
Raphaël Braud 答案的更新版本:
'default': {
'BACKEND': 'django_redis.cache.RedisCache',
'LOCATION': '/var/run/redis/redis.sock',
},