First time here? Check out the FAQ!

Revision history  [back]

Log in to django's shell:

python manage.py shell

and type:

from django.core.cache import cache
cache.set('somekey', 'someval')
cache.get('somekey')

You should get back 'someval' when the cache works. You can confirm that with the dummy cache backend the cache.get('somekey') will return None, but with some real backend you'll get the stored value.