Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I was trying to use locmem cache for my web application but couldn't find any concrete documentation on how can i get the contents of the cache. I mean I want to check if my keys are being set correctly in the cache. How can I list all the keys in this cache or is that even possible?

Get list of Cache Keys in Django

This is what i found for memcache but nothing for locmem cache?

P.S.: I am new to using cache in django so I might be missing a few things. Can anyone refer me to a good documentation?

share|improve this question

1 Answer

up vote 1 down vote accepted

The thing about locmem is that it really just a local memory storage. Looking at the code, it's clear that the data is just being saved in a module-level variable, _caches, in that module. So you can just do

from django.core.cache.backends import locmem
print locmem._caches
share|improve this answer
Thanks for guiding me in the right direction. – Mayank Nov 29 '12 at 17:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.