Package madrona :: Package common :: Package management :: Package commands :: Module clear_cache
[hide private]

Source Code for Module madrona.common.management.commands.clear_cache

1  from django.core.management.base import BaseCommand 
2  from django.core.cache import cache 
3   
4 -class Command(BaseCommand):
5 - def handle(self, *args, **kwargs):
6 cache.clear() 7 print 'Cleared cache'
8