Tagged Questions

6
votes
4answers
2k views

How to test django caching?

Is there a way to be sure that a page is coming from cache on a production server and on the development server as well? The solution shouldn't involve caching middleware because not every project ...
5
votes
2answers
205 views

Caching non-view returns

I have a dozen or so permission lookups on views that make sure users have the right permissions to do something on the system (ie make sure they're in the right group, if they can edit their profile, ...
3
votes
1answer
612 views

Django Database Caching

I'm working on a small project, and I wanted to provide multiple caching options to the end user. I figured with Django it's pretty simplistic to swap memcached for database or file based caching. My ...
2
votes
1answer
294 views

Why doesn't Django's per-site cache middleware work for me?

I am using Django 1.3 beta 1 and set up memcached. I made changes to my settings.py per Django's instructions: CACHES = { 'default': { 'BACKEND': ...
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 ...
1
vote
1answer
42 views

Clearing specific cache in Django

I am using view caching for a django project. It says the cache uses the URL as the key, so I'm wondering how to clear the cache of one of the keys if a user updates/deletes the object. An example: ...
1
vote
1answer
205 views

Django: how to cache dynamic pages flexibly?

I was trying to set up cache for my Django application but it seems that Django's caching framework is based on TIMEOUT: set a cache and it'll remain valid for the TIMEOUT amount of seconds. That ...
0
votes
1answer
67 views

Global variable/Variable caching in Django

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, { (...) ...
0
votes
2answers
302 views

Caching a Django queryset for the calendar date

I have a query which results only change once a day. Seems like a waste to be performing that query every request I get for that page. I am investigating using memcached for this. How would I begin? ...
0
votes
1answer
42 views

erase template cache

I have a Django app where users can select between 2 interface modes, that mode affect some pages... for those pages I use different templates In urls.py I have something like this: mode = ...