Django admin performance issue

后端 未结 2 1816
孤独总比滥情好
孤独总比滥情好 2021-01-21 21:51

I\'m getting thousands of these queries when I try to open up a model in the Django admin interface and it\'s leading to a serious performance issue.

[sql] SELEC         


        
2条回答
  •  日久生厌
    2021-01-21 22:04

    Or just enable list_select_related.

    class MyModelAdmin(admin.ModelAdmin):
        list_select_related = True
        # ....
    

提交回复
热议问题