The django-caching tag has no wiki summary.
4
votes
1answer
226 views
Django - Multiple Sites Site Caching
I have a number of sites under one django application that I would like to implement site wide caching on. However it is proving to be a real hassle.
what happens is that ...
3
votes
2answers
107 views
Cache for everybody except staff members
I have a django site where I want to stick an "admin bar" along the top of every non-admin page for staff members. It would contain useful things like page editing tools, etc.
The problem comes from ...
2
votes
2answers
192 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': ...
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
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
1answer
57 views
Changes in DB data not reflecting in the Django queryset in a continuously looping script
I am using Django's ORM to get newly added entries from a Db and pass them to a Messaging queue. I am doing this in an infinite while loop , The PROBLEM in every loop iteration I am getting the same ...
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 = ...