Monday, June 25, 2012

How to entirely clear django cache

Some time you need for developer purposes entirely clear django cache, to do it use that simple code:
from django.core.cache import cache
cache.clear()

No comments:

Post a Comment