Hello all, Quick question. Given these models ...
class A(models.Model): pass class B(models.Model): model_a = models.ForeignKey(A) ... getting the model_a attribute on an instance of B will result in that related object being cached. So the question: given an instance of B, how do I know whether the related object has already been cached? Been looking through the source code, but I can't find where related_objects are stored. Thanks in advance to anyone who can help! -- Andrew --~--~---------~--~----~------------~-------~--~----~ 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 django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---