diefenbach / django-lfs

An online-shop based on Django
http://www.getlfs.com
BSD 3-Clause "New" or "Revised" License
622 stars 222 forks source link

not working buttong - Clear Cache on lfs 0.9 #162

Open McQuak opened 9 years ago

McQuak commented 9 years ago

Clear Cache button doesn't work on lfs 0.9 - we used redis monitor which doesn't show any changes after pressing clear cache...

pigletto commented 9 years ago

AFAIK Redis is not builtin cache backend in django. What kind of application do you use to have it working as a cache backend?

Can you also try if the following works (clears cache):

$ bin/django shell
> from django.core.cache import cache
> cache.clear()