Skip to content
代码片段 群组 项目
提交 b917e6d5 编辑于 作者: Siddharth Dungarwal's avatar Siddharth Dungarwal 提交者: Terri Chu
浏览文件

Apply patch by @terrichu

Preloaded Member Roles in renders_projects_list and used it in
SearchServicePresenter.

Changelog: performance
上级 21b554b5
No related branches found
No related tags found
无相关合并请求
......@@ -15,7 +15,8 @@ def preload_max_member_access_for_collection(klass, collection)
method_name = "max_member_access_for_#{klass.name.underscore}_ids"
current_user.public_send(method_name, collection.ids) # rubocop:disable GitlabSecurity/PublicSend
collection_ids = collection.try(:map, &:id) || collection.ids
current_user.public_send(method_name, collection_ids) # rubocop:disable GitlabSecurity/PublicSend
end
# rubocop: enable CodeReuse/ActiveRecord
end
# frozen_string_literal: true
module RendersProjectsList
include RendersMemberAccess
def prepare_projects_for_rendering(projects)
preload_max_member_access_for_collection(Project, projects)
current_user.preloaded_member_roles_for_projects(projects) if current_user
# Call the count methods on every project, so the BatchLoader would load them all at
# once when the entities are rendered
......
......@@ -2,6 +2,7 @@
class SearchServicePresenter < Gitlab::View::Presenter::Delegated
include RendersCommits
include RendersProjectsList
presents ::SearchService, as: :search_service
......@@ -28,6 +29,8 @@ def search_objects
objects.respond_to?(:eager_load) ? objects.eager_load(:status) : objects # rubocop:disable CodeReuse/ActiveRecord
when 'commits'
prepare_commits_for_rendering(objects)
when 'projects'
prepare_projects_for_rendering(objects)
else
objects
end
......
......@@ -75,14 +75,9 @@ def send_search_request(params)
let(:creation_args) { { name: 'foo' } }
let(:params) { { search: 'foo', scope: 'projects' } }
# some N+1 queries still exist
# each project requires 3 extra queries
# - one count for forks
# - one count for open MRs
# - one count for open Issues
# there are 4 additional queries run for the logged in user:
# (1) user preferences, (1) user statuses, (1) user details, (1) users
# the threshold accounts for 6 projects
let(:threshold) { 42 }
# 1 for users
# 1 for root ancestor for each project
let(:threshold) { 7 }
it_behaves_like 'an efficient database result'
end
......
......@@ -66,13 +66,9 @@ def send_search_request(params)
let(:creation_args) { { name: 'project' } }
let(:params) { { search: 'project', scope: 'projects' } }
# some N+1 queries still exist
# each project requires 3 extra queries
# - one count for forks
# - one count for open MRs
# - one count for open Issues
# there are 4 additional queries run for the logged in user:
# (1) user preferences, (1) user statuses, (1) user details, (1) users
let(:threshold) { 17 }
# 1 for users
# 1 for root ancestor for each project
let(:threshold) { 7 }
it_behaves_like 'an efficient database result'
end
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册