django-caching

Global variable/Variable caching in Django

Global variable/Variable caching in Django Question: In my website, I want to present to the user the most viewed product categories in a sidebar, in multiple pages. so in each different view I have: variables = RequestContext(request, { (…) ‘most_viewed_cats’: calculate_most_viewed_categories() } and in the various templates {% include "list_most_viewed_categories" %} and in that one: …

Total answers: 1