Tagged Questions

6
votes
5answers
3k views

How do you know if memcached is doing anything?

I'm testing out using memcached to cache django views. How can I tell if memcached is actually caching anything from the Linux command line?
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
209 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
2answers
117 views

Caching queryset choices for ModelChoiceField or ModelMultipleChoiceField in a Django form

When using ModelChoiceField or ModelMultipleChoiceField in a Django form, is there a way to pass in a cached set of choices? Currently, if I specify the choices via the queryset parameter, it results ...
3
votes
2answers
314 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 ...
3
votes
2answers
164 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 ...
3
votes
4answers
996 views

Will Django's cache modules work on Google App Engine?

I am running Django (1.0.2) on Google App Engine, and would like to know which (if any) of the following Django caching modules ought to inherently work with Google's memcache implementation: ...
3
votes
1answer
626 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
208 views

django querysets + memcached: best practices

Trying to understand what happens during a django low-level cache.set() Particularly, details about what part of the queryset gets stored in memcached. First, am I interpreting the django docs ...
2
votes
2answers
194 views

How to use 2 different cache backends in Django?

I need to use memcached and file based cache. I setup my cache in settings: CACHES = { 'default': { 'BACKEND': 'django.core.cache.backends.filebased.FileBasedCache', 'LOCATION': ...
2
votes
3answers
144 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
1answer
336 views

Django multiple caching BACKEND routers howto?

So I want to cache some data in mysql and some in memcached. at the moment I have this In my config file, but i don't know how to write router for cache back end. CACHES = { 'default': { ...
2
votes
1answer
316 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': ...
1
vote
1answer
56 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
2answers
38 views

Django CACHE_BACKEND Error

So Im running into this CACHE error when I try to runserver or syncdb. Here is the traceback: https://gist.github.com/1538051 I tried inserting this into the settings.py file: CACHE_BACKEND = { ...
1
vote
1answer
66 views

Can I force Django’s per-site cache to use only each page’s path as its key?

I’ve developed a Django site. There’s pretty much a 1-to-1 relationship between model instances in the dabatase, and pages on the site. I’d like to cache each page on the site (using memcached as the ...
1
vote
1answer
64 views

Which Django Caching System is Faster: Filesystem or DB?

I know there isn't necessarily a clear cut between these two like there is between Memcached an DB/Filesystem, but I'm wondering what conditions would lead to filesystem being faster than DB caching. ...
1
vote
1answer
227 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 ...
1
vote
1answer
299 views

Django - Persistant cache

Is there a way I can set a cache key indefinitely using the default django cache framework? I tried setting the timeout to 0, but that doesn't set the key at all unfortunately.
1
vote
2answers
297 views

Per-request cache in Django?

I would like to implement a decorator that provides per-request caching to any method, not just views. Here is an example use case. I have a custom tag that determines if a record in a long list ...
1
vote
3answers
561 views

django + memcached: problem with limit of 1 mb

Does anyone know about any solutions for keeping data bigger, than 1mb in memcached ? This is no big deal to cut big data to 1mb pieces before setting and merge this pieces after getting from ...
0
votes
2answers
28 views

Django optimize code for large data filtering

As I am searching through 15000 results, is there any way to optimize the processing speed? In my VIEW I'm filtering search as this: if form.is_valid(): results = Screening.objects.filter( ...
0
votes
2answers
102 views

What is the best deployment configuration for Django?

I will be deploying my django project on the server. For that purpose I plan on doing the following optimization. What i would like to know is that am I missing something? How can I do it in a ...
0
votes
1answer
79 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
0answers
34 views

Django - cache doesn't but query is OK

I try to make a very simple cache usage: myquery = UserProfile.objects.select_related('user').filter(status__exact=1).values_list('user__username', 'q_points').order_by('-q_points')[:50] ...
0
votes
1answer
60 views

How can explicitly reset a template fragment cache in Django?

I am using Memcache for my Django application. In Django, developers can use template fragment caching to only cache a section of a template. ...
0
votes
1answer
62 views

Django low-level cache API not working

I'm trying to cache the request.POST dict using the low-level cache API, but it seems to not be working. Instead of the cached dict I get the None value. Here's what I tried: print ...
0
votes
0answers
20 views

Deleting many object from cache fulfilling given condition

I've got model X constructed per other model Y and user U. X is stored in django-cache under key 'X_Y.id_U.id'. Now i want to delete all models X binded to Y from cache (for all users). How can i do ...
0
votes
0answers
47 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
79 views

Asynchronous data fetching and cache handling

I'm planning on deploying a dynamic site that needs certain tasks to be done periodically in the background, let's say every hour or two. The data that i need to output is strictly depending on the ...
0
votes
1answer
107 views

Django multiple caches backends

I want to use multiple caching engines in one django project. In example I use sorl.thumbnail, that generated many sql queries to get/set thumbnail for model image. For caching this queries I use ...
0
votes
1answer
65 views

Efficient storing a big table in Django cache

I use Django with jqGrid and loading pages via AJAX. At times, queries are very complex, and page loading is ver slow, for far pages is much slower (which is to be expected, the results often exceed ...
0
votes
2answers
78 views

Django : make a variable persistent

Basically I want to make a variable persitent in Django and I don't know how. To be more precise, I want a user to choose a specific project when he logs in the site (via a ChoiceField for example). ...
0
votes
2answers
102 views

Django - how to invalidate per-view cache?

I want to use per-view cache. I know how it's working, but where's the problem? How can I invalidate that cache? I must do it each time database records are changed. There is no info about how to do ...
0
votes
0answers
51 views

Django Cache - how to clear per-site cache?

I use per-site cache. In my admin actions I want to add some commnad to clear cache every time content is changed. How can I clear per-site cache from admin?
0
votes
0answers
174 views

How to cache and clean paginated content?

I know how to create cache and delete it. But - how can cache and then remove cached content based on pagination. Now my caches are named result-1, result-2, ..... How in 1 line can I delete all ...
0
votes
4answers
445 views

Some cache problems

I'm wondering if I can delete a cached content made in template cache. I want to delete it from my view. I have in my template {% cache 500 cache_name sites.number %} Is it possible to delete all ...
0
votes
1answer
167 views

Django staticgenerator vs CACHE_BACKEND

Is there any difference between staticgenerator and useing Django's CACHE_BACKEND on the filesystem eg. CACHE_BACKEND = 'file:///var/tmp/django_cache' ?
0
votes
2answers
315 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
45 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 = ...