The caching is intentional, and designed to save you expensive database queries. You can reset the cache in the shell by doing something like this:
qs=ModelName.objects.all() # do stuff with your queryset # do your external database manipulation qs._result_cache=None # setting _result_cache none will make the query set re-query the db next time it's used # do stuff with updated queryset --~--~---------~--~----~------------~-------~--~----~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---