You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
523 B
25 lines
523 B
#!/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'))
|