Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
gitlab-ce
Commits
93f9e71b
Commit
93f9e71b
authored
Apr 06, 2017
by
Kamil Trzcinski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Further optimise queries
parent
62919a17
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
9 deletions
+11
-9
app/serializers/pipeline_serializer.rb
app/serializers/pipeline_serializer.rb
+10
-8
spec/serializers/pipeline_serializer_spec.rb
spec/serializers/pipeline_serializer_spec.rb
+1
-1
No files found.
app/serializers/pipeline_serializer.rb
View file @
93f9e71b
...
...
@@ -13,16 +13,18 @@ class PipelineSerializer < BaseSerializer
def
represent
(
resource
,
opts
=
{})
if
resource
.
is_a?
(
ActiveRecord
::
Relation
)
resource
=
resource
.
includes
(
:pending_builds
,
project_includes
=
[
{
namespace: :route
},
:route
]
resource
=
resource
.
includes
(
:retryable_builds
,
:cancelable_statuses
,
:manual_actions
,
:artifacts
,
:trigger_requests
)
resource
=
resource
.
includes
(
pending_builds: :project
)
resource
=
resource
.
includes
(
project: :namespace
)
resource
=
resource
.
includes
(
manual_actions:
{
project: :namespace
})
resource
=
resource
.
includes
(
artifacts:
{
project: :namespace
})
:trigger_requests
)
resource
=
resource
.
includes
(
project:
project_includes
,
pending_builds:
[
:project
],
manual_actions:
{
project:
project_includes
},
artifacts:
{
project:
project_includes
}
)
end
if
paginated?
...
...
spec/serializers/pipeline_serializer_spec.rb
View file @
93f9e71b
...
...
@@ -112,7 +112,7 @@ describe PipelineSerializer do
it
"verifies number of queries"
do
recorded
=
ActiveRecord
::
QueryRecorder
.
new
{
subject
}
expect
(
recorded
.
count
).
to
be_within
(
10
).
of
(
230
)
expect
(
recorded
.
count
).
to
be_within
(
10
).
of
(
93
)
expect
(
recorded
.
cached_count
).
to
be_within
(
5
).
of
(
5
)
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment