Skip to content

Commit 88effb6

Browse files
authored
Merge pull request #3721 from manyfold3d/performance
Optimised database queries
2 parents ad78102 + d7d65ae commit 88effb6

10 files changed

+22
-16
lines changed

app/controllers/collections_controller.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def index
2828
@collections = @collections.page(page).per(helpers.pagination_settings["per_page"])
2929
end
3030
# Eager load
31-
@collections = @collections.includes :collections, :collection, :links, models: [:preview_file, :library]
31+
@collections = @collections.includes :collections, :collection, :links
3232
# Apply tag filters in-place
3333
@filter_in_place = true
3434
render layout: "card_list_page"
@@ -85,7 +85,7 @@ def get_collection
8585
authorize Collection
8686
@title = t(".unknown")
8787
else
88-
@collection = policy_scope(Collection).includes(:links, :caber_relations).find_param(params[:id])
88+
@collection = policy_scope(Collection).find_param(params[:id])
8989
authorize @collection
9090
@title = @collection.name
9191
end

app/controllers/concerns/filterable.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def get_filters
1010
end
1111

1212
def filtered_models(filters)
13-
models = policy_scope(Model).includes(:tags, :creator, :collection)
13+
models = policy_scope(Model).all
1414
models = filter_by_library(models, filters[:library])
1515
models = filter_by_missing_tag(models, filters[:missingtag], filters[:library])
1616
models = filter_by_tag(models, filters[:tag])

app/controllers/concerns/model_listable.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def prepare_model_list
3030
end
3131

3232
# Load extra data
33-
@models = @models.includes [:library, :creator, :collection]
33+
@models = @models.includes [:creator, :collection]
3434
@models = @models.preload [:model_files, :preview_file] # Use preload query to avoid joining JSON fields
3535
end
3636
end

app/controllers/creators_controller.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def index
2525
@creators = @creators.page(page).per(helpers.pagination_settings["per_page"])
2626
end
2727
# Eager load data
28-
@creators = @creators.includes(:links, :models)
28+
@creators = @creators.includes(:links, :collections)
2929
# Apply tag filters in-place
3030
@filter_in_place = true
3131
render layout: "card_list_page"
@@ -80,7 +80,7 @@ def get_creator
8080
authorize Creator
8181
@title = t(".unknown")
8282
else
83-
@creator = policy_scope(Creator).includes(:links, :caber_relations).find_param(params[:id])
83+
@creator = policy_scope(Creator).find_param(params[:id])
8484
authorize @creator
8585
@title = @creator.name
8686
end

app/controllers/models_controller.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ def scan
122122

123123
def bulk_edit
124124
authorize Model
125-
@models = filtered_models @filters
125+
@models = filtered_models(@filters).includes(:collection, :creator)
126126
generate_available_tag_list
127127
if helpers.pagination_settings["models"]
128128
page = params[:page] || 1
@@ -221,7 +221,7 @@ def model_params
221221
end
222222

223223
def get_model
224-
@model = policy_scope(Model).includes(:model_files, :creator, :preview_file, :library, :tags, :taggings, :links, :caber_relations).find_param(params[:id])
224+
@model = policy_scope(Model).includes(:model_files, :creator, :preview_file, :library, :links).find_param(params[:id])
225225
authorize @model
226226
@title = @model.name
227227
end

app/controllers/problems_controller.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def index
2626
# Don't show types ignored in user settings
2727
query = query.visible(helpers.problem_settings)
2828
query = query.includes([:problematic])
29-
@problems = query.page(page).per(50).order([:category, :problematic_type])
29+
@problems = query.page(page).per(50).order([:category, :problematic_type]).includes(problematic: [:library, :model])
3030
# Do we have any filters at all?
3131
@filters_applied = [:show_ignored, :severity, :category, :type].any? { |k| params.has_key?(k) }
3232
end

app/controllers/settings/users_controller.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ class Settings::UsersController < ApplicationController
33
respond_to :html
44

55
def index
6-
@users = policy_scope(Federails::Actor).where(entity_type: "User").where.not(entity_id: nil)
6+
@users = policy_scope(Federails::Actor).where(entity_type: "User").where.not(entity_id: nil).includes(entity: [:roles])
77
render layout: "settings"
88
end
99

app/lib/timeline.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module Timeline
22
ACCESS_PERMISSIONS = ["view", "edit", "own"]
33

44
def self.local(actions = ["Create", "Update"], entity_types = ["Federails::Actor"], limit = 20, for_user: nil)
5-
Federails::Activity.where(action: actions, entity_type: entity_types).order(created_at: :desc).limit(limit).select do |activity| # rubocop:todo Pundit/UsePolicyScope
5+
Federails::Activity.where(action: actions, entity_type: entity_types).includes(:actor, entity: {entity: :model_files}).order(created_at: :desc).limit(limit).select do |activity| # rubocop:todo Pundit/UsePolicyScope
66
if activity.entity_type == "Federails::Actor"
77
entity = activity.entity&.entity
88

config/environments/development.rb

-5
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,4 @@
7878
# config.action_cable.disable_request_forgery_protection = true
7979

8080
config.active_job.queue_adapter = :sidekiq
81-
82-
config.after_initialize do
83-
Bullet.enable = true
84-
Bullet.bullet_logger = true
85-
end
8681
end

config/initializers/bullet.rb

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
Rails.application.config.after_initialize do
2+
if Rails.env.development?
3+
Bullet.enable = true
4+
Bullet.raise = true
5+
6+
# Features
7+
Bullet.n_plus_one_query_enable = true
8+
Bullet.unused_eager_loading_enable = true
9+
Bullet.counter_cache_enable = false
10+
end
11+
end

0 commit comments

Comments
 (0)