Login

SelectRelatedManager

Author:
realmac
Posted:
September 15, 2011
Language:
Python
Version:
1.2
Score:
0 (after 0 ratings)

Because select_related() only works on ForeignKeys that are not null or blank, when you are customizing the admin, even if you set "list_select_related=True" you can still end up with way too many querys in the Admin changelist. By adding this code to your model you can decrease the queries dramatically.

I found I needed this when I was working with Django apps with a lot of legacy data and I couldn't set the ForeignKey null=False.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
class SelectRelatedManager(models.Manager):
    def get_query_set(self):
        return super(SelectRelatedManager, self)\
            .get_query_set()\
            .select_related('organization')

class SomeModel(models.Model):
    ...
    organization = models.ForeignKey(Organization, blank=True, null=True)
    ....

    objects = SelectRelatedManager()

More like this

  1. Template tag - list punctuation for a list of items by shapiromatron 3 months ago
  2. JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 3 months, 1 week ago
  3. Serializer factory with Django Rest Framework by julio 10 months, 1 week ago
  4. Image compression before saving the new model / work with JPG, PNG by Schleidens 10 months, 3 weeks ago
  5. Help text hyperlinks by sa2812 11 months, 3 weeks ago

Comments

Please login first before commenting.