mirror of
https://github.com/discourse/discourse.git
synced 2025-05-24 01:21:23 +08:00
PERF: Eager load Theme associations in Stylesheet Manager.
Before this change, calling `StyleSheet::Manager.stylesheet_details` for the first time resulted in multiple queries to the database. This is because the code was modelled in a way where each `Theme` was loaded from the database one at a time. This PR restructures the code such that it allows us to load all the theme records in a single query. It also allows us to eager load the required associations upfront. In order to achieve this, I removed the support of loading multiple themes per request. It was initially added to support user selectable theme components but the feature was never completed and abandoned because it wasn't a feature that we thought was worth building.
This commit is contained in:
@ -12,13 +12,13 @@ class SvgSpriteController < ApplicationController
|
||||
no_cookies
|
||||
|
||||
RailsMultisite::ConnectionManagement.with_hostname(params[:hostname]) do
|
||||
theme_ids = params[:theme_ids].split(",").map(&:to_i)
|
||||
theme_id = params[:theme_id].to_i
|
||||
|
||||
if SvgSprite.version(theme_ids) != params[:version]
|
||||
return redirect_to path(SvgSprite.path(theme_ids))
|
||||
if SvgSprite.version(theme_id) != params[:version]
|
||||
return redirect_to path(SvgSprite.path(theme_id))
|
||||
end
|
||||
|
||||
svg_sprite = "window.__svg_sprite = #{SvgSprite.bundle(theme_ids).inspect};"
|
||||
svg_sprite = "window.__svg_sprite = #{SvgSprite.bundle(theme_id).inspect};"
|
||||
|
||||
response.headers["Last-Modified"] = 10.years.ago.httpdate
|
||||
response.headers["Content-Length"] = svg_sprite.bytesize.to_s
|
||||
|
Reference in New Issue
Block a user