mirror of
https://github.com/netbox-community/netbox.git
synced 2026-02-05 23:06:25 -06:00
Add management command for clearing cache
This commit is contained in:
@@ -0,0 +1,11 @@
|
|||||||
|
from django.core.cache import cache
|
||||||
|
from django.core.management.base import BaseCommand
|
||||||
|
|
||||||
|
|
||||||
|
class Command(BaseCommand):
|
||||||
|
"""Command to clear the entire cache."""
|
||||||
|
help = 'Clears the cache.'
|
||||||
|
|
||||||
|
def handle(self, *args, **kwargs):
|
||||||
|
cache.clear()
|
||||||
|
self.stdout.write('Cache has been cleared.', ending="\n")
|
||||||
Reference in New Issue
Block a user