我的缓存设置:
CACHES = {
'default': {
'BACKEND': 'django_redis.cache.RedisCache',
'LOCATION': 'redis://127.0.0.1:6379/1',
'OPTIONS': {
"CLIENT_CLASS": "django_redis.client.DefaultClient",
},
}
}
主机是 127.0.0.1,端口是 6379,数据库是 1。
我想通过使用redis_connection
这样的添加数据:
from django_redis import get_redis_connection
redis_conn = get_redis_connection('default')
redis_conn.set('somekey', 'somevalue')
所以redis数据库现在有数据了,我可以通过:
redis_conn.get('somekey')
但我无法得到它django.core.cache.cache
,尽管数据库中存在数据:
from django.core.cache import cache
cache.get('somekey') #return None
如果我必须使用conn设置数据并使用缓存获取数据,我该怎么办?