I\'m trying to understand how Django is setting keys for my views. I\'m wondering if there\'s a way to just get all the saved keys from Memcached. something like a cac
cac
For RedisCache you can get all available keys with.
from django.core.cache import cache cache.keys('*')