ソースを参照

Fix three N+1 queries in pin loading

Fetch the submitter with a join and get all the images and tags in one
query each. This reduces the total query count for loading 50 pins from
304 to 158.

See issue #85.
pull/86/head
Jens Gutermuth 9年前
コミット
60cf2dcbd7
1個のファイルの変更2行の追加1行の削除
  1. +2
    -1
      pinry/core/api.py

+ 2
- 1
pinry/core/api.py ファイルの表示

@@ -135,7 +135,8 @@ class PinResource(ModelResource):
filtering = {
'submitter': ALL_WITH_RELATIONS
}
queryset = Pin.objects.all()
queryset = Pin.objects.all().select_related('submitter'). \
prefetch_related('image', 'tags')
resource_name = 'pin'
include_resource_uri = False
always_return_data = True


読み込み中…
キャンセル
保存