I am using redis as an in-memory database backend for django cache.
In particular, I use django-redis configured as follows:
CACHES = {
'default': {
'BACKEND': 'redis_cache.cache.RedisCache',
'KEY_PREFIX': DOMAIN_NAME,
'LOCATION': 'unix:/tmp/redis_6379.sock:1',
'OPTIONS': {
'PICKLE_VERSION': -1, # default
'PARSER_CLASS': 'redis.connection.HiredisParser',
'CLIENT_CLASS': 'redis_cache.client.DefaultClient',
},
},
}
My django cache seem to work correctly.
The weird thing is that I cannot see django cache keys using the redis-cli
command line.
[edit] Please notice in the following that I tried both with
$ redis-cli
and
$ redis-cli -s /tmp/redis_6379.sock
[endedit]
with no difference.
In particular, using the KEYS *
command:
$ redis-cli
redis 127.0.0.1:6379> keys *
(empty list or set)
but
redis 127.0.0.1:6379> set stefano test
OK
redis 127.0.0.1:6379> keys *
1) "stefano"
while from django shell:
In [1]: from django.core.cache import cache
In [2]: cache.keys('*')
Out[2]:
[u'django.contrib.sessions.cachebblhwb3chd6ev2bd85bawuz7g6pgaij8',
u'django.contrib.sessions.cachewpxiheosc8qv5w4v6k3ml8cslcahiwna']
If I'm using MONITOR
on the cli:
redis 127.0.0.1:6379> monitor
OK
1373372711.017761 [1 unix:/tmp/redis_6379.sock] "KEYS" "project_prefix:1:*"
I can see a request, using the django cache prefix; which should prove the redis-cli is connected to the same service.
But even searching for that prefix in the redis-cli
returns an (empty list or set)
Why is that?
What is the mechanisms that compartmentalize the different caches on the same redis instance?