I want to use django fragment caching for anonymous users, but give authenticated users fresh data. This seems to work fine:

{% if user.is_anonymous %}

    {% load cache %}
    {% cache 300 "my-cache-fragment" %}
        <b>I have to write this out twice</b>
    {% endcache %}

{% else %}

    <b>I have to write this out twice</b>

{% endif %}

The only problem is that I have to repeat the html to be cached. Is there some clever way around this, other than putting it in an include? Thanks.

link|improve this question

71% accept rate
feedback

3 Answers

Try setting the cache timeout to zero for authenticated users.

views.py:

context = {
    "cache_timeout": 300 if request.user.is_anonymous() else 0,
}

Template:

{% load cache %}
{% cache cache_timeout "my-cache-fragment" %}
    <b>I have to write this only once</b>
{% endcache %}
link|improve this answer
feedback

Not sure I understand the problem...

{% load cache %}
{% cache 300 "my-cache-fragment" %}
    <b>I have to write this out twice</b>
{% endcache %}

{% if not user.is_anonymous %}
    <b>And this is the extra uncached stuff for authenticated users</b>
{% endif %}
link|improve this answer
It's the same stuff for both anonymous and authenticated users. The only difference is that one is inside the cache tags and one is outside. – asciitaxi Apr 21 '11 at 6:24
feedback

You can specify caching with passing extra parameters to cache tag like:

{% cache 500 sidebar request.user.is_anonymous %}

Check here for more info... But this will also cache data for logged-in users too...

Probably you have to write a custom template tag. You can start by inspecting existing cache tag and create a custom tag based on that code. But do not forget, django caching is quite strong and complex(like supporting different languages in template caching).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.