Re: low-level cache & pagination

2007-12-01 Thread Doug B
It might depend on your cache setting in setting.py, and the devserver reloading on file change. I've had that happen and confuse things a bit. Going straight to memcache or file based for low level caching development was the only way to get consistent. There are also some limitations on the s

Re: low-level cache & pagination

2007-11-30 Thread Chris G
Alright, I think I answered my own question. It seems the current RequestContext is a little messed up and not only requests cache to be remade, but also crashes runserver upon more than 1 request. On Nov 30, 7:26 pm, Chris G <[EMAIL PROTECTED]> wrote: > I have a large query that is ran and takes

low-level cache & pagination

2007-11-30 Thread Chris G
I have a large query that is ran and takes about 50 seconds to completely and is pretty resource intensive. So what I have done is cached it into a key via cache.set('my_query_results', results, 300) The problem is that I also use pagination which results from this query. So when navigating to ?p