b6125f7045
This commit does a number of things: 1. Reduces the number of queries needed by perform a single query to get all the tuples for the relevant rows. 2. Uses a transaction to query the tuple counts to ensure that the data is retrieved from the primary. Closes #46742
13 lines
492 B
Ruby
13 lines
492 B
Ruby
class Admin::DashboardController < Admin::ApplicationController
|
|
include CountHelper
|
|
|
|
COUNTED_ITEMS = [Project, User, Group, ForkedProjectLink, Issue, MergeRequest,
|
|
Note, Snippet, Key, Milestone].freeze
|
|
|
|
def index
|
|
@counts = Gitlab::Database::Count.approximate_counts(COUNTED_ITEMS)
|
|
@projects = Project.order_id_desc.without_deleted.with_route.limit(10)
|
|
@users = User.order_id_desc.limit(10)
|
|
@groups = Group.order_id_desc.with_route.limit(10)
|
|
end
|
|
end
|