On Tue, Jun 21, 2011 at 9:20 AM, philippw <philipp.wassiba...@gmail.com> wrote:
> hi.
>
> i have weird caching problems with the 1.3 version of django. I
> probably have something configured wrong, but am not sure what.
>

You don't mention how you have configured caching, which is relevant.
By default, if you do not configure a a cache Django will use the
'locmem' cache, which uses per-process local memory to act as a cache,
which means you get one cache per process, and consequently the
behaviour you have described.

If you don't want a cache, but want to use code that uses the cache
framework, you must configure Django to use DummyCache.

All of this is documented in the caching documentation:
https://docs.djangoproject.com/en/1.3/topics/cache/

Cheers

Tom

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to