How do I expire a django template cache key on receiving a signal?

后端 未结 3 1843
一生所求
一生所求 2021-02-06 10:25

In my front page template I use the cache function like this:

{% cache 86400 my_posts %}
    {% get_latest_posts %}
{% endcache %}

When there i

相关标签:
3条回答
  • 2021-02-06 11:04
    from django.core.cache import cache
    from django.core.cache.utils import make_template_fragment_key
    
    cache.delete(make_template_fragment_key('footer'))
    
    0 讨论(0)
  • 2021-02-06 11:09

    Have a look at how the cache key is constructed:

    args = md5_constructor(u':'.join([urlquote(resolve_variable(var, context)) for var in self.vary_on]))
    cache_key = 'template.cache.%s.%s' % (self.fragment_name, args.hexdigest())
    

    The key is a combination of the fragment name (my_posts) and a md5 sum of additional arguments to the cache tag. Since you don't have additional arguments, the hexdigest is d41d8cd98f00b204e9800998ecf8427e (the md5 hash of the empty string). The cache key should therefore end up to be

    template.cache.my_posts.d41d8cd98f00b204e9800998ecf8427e
    

    If you need a more general solution, this snippet might help.

    0 讨论(0)
  • 2021-02-06 11:09

    Note that the md5_constructor in the first line of Benjamin Wohlwend's example above is deprecated. Current (Nov. 2011) version is:

    args = hashlib.md5(u':'.join([urlquote(resolve_variable(var, context)) for var in self.vary_on]))
    
    0 讨论(0)
提交回复
热议问题