-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add clear_redis_cache management command
- Loading branch information
1 parent
e4b21ad
commit ff2601c
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
""".. Ignore pydocstyle D400. | ||
================= | ||
Clear Redis Cache | ||
================= | ||
Clear all the Redis Cache. | ||
""" | ||
|
||
|
||
from django.core.management.base import BaseCommand | ||
|
||
from resolwe.flow.managers.listener.redis_cache import redis_cache | ||
|
||
|
||
class Command(BaseCommand): | ||
"""Run the executor listener.""" | ||
|
||
help = "Clear Redis cache." | ||
|
||
def handle(self, *args, **options): | ||
"""Clear the Redis cache.""" | ||
redis_cache.clear() |