Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Why does the database remain static when a user enters the django shell via python manage.py runserver? For example:

>>> from userprofile.models import UserProfile
>>> up=UserProfile.objects.get(id=4)
>>> up.get_jobs_applied_for()
[<JobApplication: david - Editor>, <JobApplication: david - Assistant Director>]
# delete entries in the mysql database
>>> up.get_jobs_applied_for()
[<JobApplication: david - Editor>, <JobApplication: david - Assistant Director>]
# but the results do not reflect that

And the method being called:

# in `UserProfile` class
def get_jobs_applied_for(self):
    jobs_applied_for = self.jobapplication_set.order_by('-timestamp')
    return jobs_applied_for

Why doesn't it query the db in real-time?

share|improve this question
How is that method implemented? – Ignacio Vazquez-Abrams May 27 '12 at 3:27
1  
Are you sure that it's not just that your UserProfile instance is caching the jobs_applied_for? Try doing up=UserProfile.objects.get(id=4) again after deleting your entries from the mysql database. – Iain May 27 '12 at 3:28
@Iain Yeah, same thing. Even if I start at the top with re-importing the UserProfile model. – David542 May 27 '12 at 3:31
2  
Is your deletion running in a separate transaction, and that isn't being committed? – Matthew Schinckel May 27 '12 at 3:45

2 Answers

up vote -1 down vote accepted

Django only populates a QuerySet the first time you do something that requires that the query be executed; after that, it keeps the same result set in memory. The order_by() doesn't force another query to be executed against the database.

share|improve this answer
Ok, thanks. Could you please provide a link to where that is in the documentation, or where i could read more about it? – David542 May 27 '12 at 4:21
This is incorrect, Django caches evaluated QuerySet. The up.get_jobs_applied_for() lines just call jobs_applied_for.__repr__(), which only evaluate something like jobs_applied_for[:20] instead of the jobs_applied_for. @David542 – okm May 27 '12 at 6:03
I believe that's what I said, but I'll agree that "caching" is better description than "populating." – Christophe May 30 '12 at 19:23

As Matthew Schinckel asked, where and when does the deletion occur? If it occurs in another process, before the second >>> up.get_jobs_applied_for(), and you're using MySQL w/ isolation level set to REPEATABLE READ, the MySQL DB would provide you an earlier snapshot before the deletion. (Providing that the code in your question are running in a whole transaction, for example in managed transaction or on some MySQL connection pool)

Also, you could use django.db.connection.queries between lines to confirm whether Django tries to query from DB actually.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.