mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-18 20:39:32 +00:00
Fix n+1 query in settings migration (#24783)
This commit is contained in:
parent
f1c1fa1411
commit
0ad2413b35
|
@ -59,9 +59,11 @@ class MoveUserSettings < ActiveRecord::Migration[6.1]
|
||||||
end
|
end
|
||||||
|
|
||||||
def up
|
def up
|
||||||
User.find_each do |user|
|
User.find_in_batches do |users|
|
||||||
previous_settings = LegacySetting.where(thing_type: 'User', thing_id: user.id).index_by(&:var)
|
previous_settings_for_batch = LegacySetting.where(thing_type: 'User', thing_id: users.map(&:id)).group_by(&:thing_id)
|
||||||
|
|
||||||
|
users.each do |user|
|
||||||
|
previous_settings = previous_settings_for_batch[user.id]&.index_by(&:var) || {}
|
||||||
user_settings = {}
|
user_settings = {}
|
||||||
|
|
||||||
MAPPING.each do |legacy_key, new_key|
|
MAPPING.each do |legacy_key, new_key|
|
||||||
|
@ -81,6 +83,7 @@ class MoveUserSettings < ActiveRecord::Migration[6.1]
|
||||||
user.update_column('settings', Oj.dump(user_settings)) # rubocop:disable Rails/SkipsModelValidations
|
user.update_column('settings', Oj.dump(user_settings)) # rubocop:disable Rails/SkipsModelValidations
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
end
|
||||||
|
|
||||||
def down; end
|
def down; end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue