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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
63b58b94
Commit
63b58b94
authored
Apr 24, 2013
by
Sato Hiroyuki
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reducing database access.
parent
75fbdc40
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
3 deletions
+11
-3
app/helpers/graph_helper.rb
app/helpers/graph_helper.rb
+1
-2
app/models/network/graph.rb
app/models/network/graph.rb
+10
-1
No files found.
app/helpers/graph_helper.rb
View file @
63b58b94
...
...
@@ -4,8 +4,7 @@ module GraphHelper
refs
+=
commit
.
refs
.
collect
{
|
r
|
r
.
name
}.
join
(
" "
)
if
commit
.
refs
# append note count
notes
=
@project
.
notes
.
for_commit_id
(
commit
.
id
)
refs
+=
"[
#{
notes
.
count
}
]"
if
notes
.
any?
refs
+=
"[
#{
@graph
.
notes
[
commit
.
id
]
}
]"
if
@graph
.
notes
[
commit
.
id
]
>
0
refs
end
...
...
app/models/network/graph.rb
View file @
63b58b94
...
...
@@ -2,7 +2,7 @@ require "grit"
module
Network
class
Graph
attr_reader
:days
,
:commits
,
:map
attr_reader
:days
,
:commits
,
:map
,
:notes
def
self
.
max_count
@max_count
||=
650
...
...
@@ -16,10 +16,19 @@ module Network
@commits
=
collect_commits
@days
=
index_commits
@notes
=
collect_notes
end
protected
def
collect_notes
h
=
Hash
.
new
(
0
)
@project
.
notes
.
where
(
'noteable_type = ?'
,
"Commit"
).
group
(
'notes.commit_id'
).
select
(
'notes.commit_id, count(notes.id) as note_count'
).
each
do
|
item
|
h
[
item
[
"commit_id"
]]
=
item
[
"note_count"
]
end
h
end
# Get commits from repository
#
def
collect_commits
...
...
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