使用 django-redis-cache
Redis 作为后端缓存实用程序的一个潜在实现是 django-redis-cache 包。
此示例假定你已经运行 Redis 服务器 。
$ pip install django-redis-cache
编辑你的 settings.py
以包含一个 CACHES
对象(参见关于缓存的 Django 文档 )。
CACHES = {
'default': {
'BACKEND': 'redis_cache.RedisCache',
'LOCATION': 'localhost:6379',
'OPTIONS': {
'DB': 0,
}
}
}