mirror of
https://github.com/discourse/discourse.git
synced 2025-06-04 20:24:47 +08:00
DEV: Limit preloaded categories (#23958)
Site data is preloaded on the first page load, which includes categories data. For sites with many categories, site data takes a long time to serialize and to transfer. In the future, preloaded category data will be completely removed.
This commit is contained in:
@ -183,6 +183,17 @@ RSpec.describe Site do
|
||||
DiscoursePluginRegistry.clear_modifiers!
|
||||
end
|
||||
end
|
||||
|
||||
context "when lazy_load_categories" do
|
||||
before { SiteSetting.lazy_load_categories = true }
|
||||
|
||||
it "limits the number of categories" do
|
||||
stub_const(Site, "LAZY_LOAD_CATEGORIES_LIMIT", 1) do
|
||||
categories = Site.new(Guardian.new).categories
|
||||
expect(categories.size).to eq(1)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
it "omits groups user can not see" do
|
||||
|
Reference in New Issue
Block a user