Skip to content

Instantly share code, notes, and snippets.

@volgoweb
Created February 11, 2020 08:26
Show Gist options
  • Save volgoweb/17229b73c9ec470f8493ffc2abb21932 to your computer and use it in GitHub Desktop.
Save volgoweb/17229b73c9ec470f8493ffc2abb21932 to your computer and use it in GitHub Desktop.
Find a mistake in celery task
#################
# Find a mistake:
#################
from django.core.cache import cache
from celery import shared_task
@shared_task()
def clear_blog_item_cache(article):
cache_key = 'blog_item_%d' % article.pk
cache.delete(cache_key)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment