##// END OF EJS Templates
scm: git: performance improvements in fetching revisions (#8857, #9472)...
scm: git: performance improvements in fetching revisions (#8857, #9472) Parse a revision for a given branch, just if we haven't parsed it for any branches before. Moved the db check to for existing revisions into a grouped search. Search for many revisions at once: this reduces db load. Revisions are grouped into sets of 100. This is to improve memory consumption. There will be just one query instead of each 100. The above two methods significantly increase parsing speed. Test case was a git repo with 6000+ commits on a master branch, and several other branches originating for master. Speed improved from 1.4h to 18min. Contributed by Gergely Fábián. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9144 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r7769:35e8f0d25d97
r9024:999a4ba30d7b
Show More
edit.html.erb
11 lines | 491 B | text/plain | TextLexer
Jean-Philippe Lang
Adds Lock/Unlock/Activate link on user edit screen....
r1733 <div class="contextual">
Eric Davis
Refactor: convert UsersController to resource...
r4117 <%= link_to l(:label_profile), user_path(@user), :class => 'icon icon-user' %>
Jean-Philippe Lang
Adds Lock/Unlock/Activate link on user edit screen....
r1733 <%= change_status_link(@user) %>
Jean-Philippe Lang
Enable ability for administrators to delete users (#7296)....
r4609 <%= link_to(l(:button_delete), @user, :confirm => l(:text_are_you_sure), :method => :delete, :class => 'icon icon-del') if User.current != @user %>
Jean-Philippe Lang
Adds Lock/Unlock/Activate link on user edit screen....
r1733 </div>
Jean-Philippe Lang
User forms cleanup....
r7769 <h2><%= link_to l(:label_user_plural), users_path %> &#187; <%=h @user.login %></h2>
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
Refactoring of tabs rendering....
r2757 <%= render_tabs user_settings_tabs %>
Jean-Philippe Lang
Split user edit screen into tabs....
r1389
Etienne Massip
Remove unecessary page title HTML escaping from views (#9252)....
r7445 <% html_title(l(:label_user), @user.login, l(:label_administration)) -%>