How to avoid n+1 select in django?

后端 未结 3 646
日久生厌
日久生厌 2021-02-05 18:01

I have a very simple datamodel with a one to many relationship between video and comments

class Video(models.Model):
    url = models.URLField(unique=True)
    .         


        
3条回答
  •  暖寄归人
    2021-02-05 18:48

    For ForeignKey, you can use selected_related():

    Comment.objects.select_related('video').all()
    

    It will generate one query only, gathering coments for you as well as videos.

    For something more complex (such as M2M), you need an external app such as unjoinify to make optimizations but it uses SQL queries to then put them back in objects.

    If you are unconfortable with this (I am), you have some alternatives:

    • django-queryset-transform: not a full solution, but helps
    • django-batch-select: roughtly a select_related that works with M2M and reverse relations.

提交回复
热议问题