Tagged Questions
6
votes
5answers
2k 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?
3
votes
4answers
976 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:
...
2
votes
1answer
316 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
297 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
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
61 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
3answers
543 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
1answer
89 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
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? ...