orestis schrieb: > Does this caching of QuerySets live beyond one request ? I assume each > thread gets its own cache, right ? > > For us poor users of shared hosting, where we're using multiple > processes that are killed and respawned many times, this isn't very > helpful... > > Unless I haven't understood all this, in that case please explain :) > > This should go in the docs, as it can have unexpected nasty > side-effects...
The cache is within one particular instance of QuerySet. As soon as the QuerySet is gone, the cache is gone. Clearer now? Michael --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-developers -~----------~----~----~----~------~----~------~--~---
