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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
db68003e
Commit
db68003e
authored
Mar 28, 2019
by
Igor
Committed by
Douwe Maan
Mar 28, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Memoize old_blob and new_blob to improve performance
parent
b8e9a379
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
lib/gitlab/diff/file.rb
lib/gitlab/diff/file.rb
+6
-2
No files found.
lib/gitlab/diff/file.rb
View file @
db68003e
...
@@ -133,11 +133,15 @@ module Gitlab
...
@@ -133,11 +133,15 @@ module Gitlab
end
end
def
new_blob
def
new_blob
new_blob_lazy
&
.
itself
strong_memoize
(
:new_blob
)
do
new_blob_lazy
&
.
itself
end
end
end
def
old_blob
def
old_blob
old_blob_lazy
&
.
itself
strong_memoize
(
:old_blob
)
do
old_blob_lazy
&
.
itself
end
end
end
def
new_blob_lines_between
(
from_line
,
to_line
)
def
new_blob_lines_between
(
from_line
,
to_line
)
...
...
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