#!/usr/bin/env python # encoding: utf-8 """ @version: ?? @author: liangliangyy @license: MIT Licence @contact: liangliangyy@gmail.com @site: https://www.lylinux.org/ @software: PyCharm @file: clear_cache.py @time: 2017/2/17 下午10:30 """ from DjangoBlog.utils import cache from django.core.management.base import BaseCommand class Command(BaseCommand): help = 'clear the whole cache' def handle(self, *args, **options): cache.clear() self.stdout.write(self.style.SUCCESS('Cleared cache\n'))