﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
17694	Docs incorrectly explain QuerySet caching	anonymous	nobody	"https://docs.djangoproject.com/en/dev/topics/db/queries/#caching-and-querysets

The documentation states that the query is re-evaluated with each new QuerySet, however, according to the following stackoverflow entry, this is not the case, and different QuerySet objects are returning a cached value.

http://stackoverflow.com/questions/3346124/how-do-i-force-django-to-ignore-any-caches-and-reload-data

{{{
>>> MyModel.objects.count()
885
# (Here I added some more data from another process.)
>>> MyModel.objects.count()
885
}}}"	Uncategorized	closed	Uncategorized	1.3	Normal	duplicate			Unreviewed	0	0	0	0	0	0
