Issue
I’ve installed django-redis-cache and redis-py. I’ve followed the caching docs for Django. As far as I know, the settings below are all that I need. But how do I tell if it’s working properly??
settings.py
CACHES = {
'default': {
'BACKEND': 'redis_cache.RedisCache',
'LOCATION': '<host>:<port>',
'OPTIONS': {
'DB': mydb,
'PASSWORD': 'mydbspasswd',
'PARSER_CLASS': 'redis.connection.HiredisParser'
},
},
}
…
MIDDLEWARE_CLASSES = (
'django.middleware.cache.UpdateCacheMiddleware',
...[the rest of my middleware]...
'django.middleware.cache.FetchFromCacheMiddleware',
)
CACHE_MIDDLEWARE_ALIAS = 'default'
CACHE_MIDDLEWARE_SECONDS = (60 * 60)
CACHE_MIDDLEWARE_KEY_PREFIX = ''
Solution
Didn’t work with Django yet, but here’s my default approach for checking if some component actually writes to redis during development:
First, I flush all keys stored in redis in order to remove old cache entries (never do this in production as this removes all data from redis):
> redis-cli FLUSHALL
Then activate caching in my application, and see what redis does:
> redis-cli MONITOR
You should enter an interactive session where you see every command sent to redis.
Reload your page and on your terminal you should see some SET* operations storing the cache data.
Reload again and if your cache works, you should see some GET* operations retrieving the cached data.
Note: with this method you can check if your cache is actually used. What you can’t see is if your cache helps speeding up your application. For that you have to do performance tests as suggested in the comments.
Answered By – Max
This Answer collected from stackoverflow, is licensed under cc by-sa 2.5 , cc by-sa 3.0 and cc by-sa 4.0