﻿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
19304	the mistake of the QuerySet Caching	rex@…	nobody	"hi Django Team,

may be I get some problem by following to django docs, in programe the Models logic,
the docs notice that get method get() https://docs.djangoproject.com/en/dev/ref/models/querysets/#get  '''do not use a cache (see Caching and QuerySets). Rather, they query the database each time they're called.''' but when in fact I check the source '''/usr/local/lib/python2.7/dist-packages/django/db/models/manager.py''' line 130 

def get(self, *args, **kwargs):
         return self.get_query_set().get(*args, **kwargs)


the method is use the cache of the querySet , and I need some help to know How do I use a query get() DO NOT Use a Cache, thanks many, btw sorry about my English.

Rex"	Uncategorized	closed	Database layer (models, ORM)	1.4	Normal	invalid	QuerySet Caching, Models get		Unreviewed	0	0	0	0	0	0
