PERF: Exclude `image_url` and `thumbnails` from `SearchTopicListItemSerializer`.

The attributes are not used and was resulting in N+1 queries.
This commit is contained in:
Guo Xiang Tan 2020-07-01 14:28:31 +08:00
parent 093ee1d80c
commit 01a722885d
No known key found for this signature in database
GPG Key ID: FBD110179AAC1F20
1 changed files with 8 additions and 0 deletions

View File

@ -4,4 +4,12 @@ class SearchTopicListItemSerializer < ListableTopicSerializer
include TopicTagsMixin include TopicTagsMixin
attributes :category_id attributes :category_id
def include_image_url?
false
end
def include_thumbnails?
false
end
end end