Tagged Questions

3
votes
2answers
160 views

Use middleware or a custom template tag for infrequently changing snippet

I've got a small snippet that I want in my sidebar. The snippet will be visible on each page, and while cheap to fetch (about 50ms on my super-slow netbook!), will change so infrequently that I'd ...
2
votes
3answers
139 views

django fragment caching for anonymous users only

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 ...
2
votes
2answers
288 views

How do I access template cache? - Django

I am caching html within a few templates e.g.: {% cache 900 stats %} {{ stats }} {% endcache %} Can I access the cache using the low level library? e.g. html = cache.get('stats') I really ...
0
votes
0answers
46 views

Django, some template fragment caches return blank results, while others are fine

I have a page template set up with django template fragment cache tags like so: <header> {% cache 900 page_heading request.get_host request.get_full_path request.cache_flush %} ...
0
votes
1answer
70 views

Django template reading wrong cache value

I am caching in my django template like this. {% load cache %} {% cache cache_timeout key_name model_id %} <div> {{some_variable}} </div> {% endcache %} Where ...