aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/attribute_methods
diff options
context:
space:
mode:
authorEugene Kenny <elkenny@gmail.com>2018-04-08 22:56:31 +0100
committerEugene Kenny <elkenny@gmail.com>2018-04-08 22:56:31 +0100
commitb9e1c0c4d7c67a65c2ea63e7f0925f4d0da306aa (patch)
treeee77eb11f5cc7ff60a1096801dc89b06b456c770 /activerecord/lib/active_record/attribute_methods
parentd729bc748811339c7e536f4ca98e91801e14c6f4 (diff)
downloadrails-b9e1c0c4d7c67a65c2ea63e7f0925f4d0da306aa.tar.gz
rails-b9e1c0c4d7c67a65c2ea63e7f0925f4d0da306aa.tar.bz2
rails-b9e1c0c4d7c67a65c2ea63e7f0925f4d0da306aa.zip
Avoid generating full changes hash on every save
`changed_attribute_names_to_save` is called in `keys_for_partial_write`, which is called on every save when partial writes are enabled. We can avoid generating the full changes hash by asking the mutation tracker for just the names of the changed attributes. At minimum this saves one array allocation per attribute, but will also avoid calling `Attribute#original_value` which is expensive for serialized attributes.
Diffstat (limited to 'activerecord/lib/active_record/attribute_methods')
-rw-r--r--activerecord/lib/active_record/attribute_methods/dirty.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/attribute_methods/dirty.rb b/activerecord/lib/active_record/attribute_methods/dirty.rb
index 3de6fe566d..7224f970e0 100644
--- a/activerecord/lib/active_record/attribute_methods/dirty.rb
+++ b/activerecord/lib/active_record/attribute_methods/dirty.rb
@@ -114,7 +114,7 @@ module ActiveRecord
# Alias for +changed+
def changed_attribute_names_to_save
- changes_to_save.keys
+ mutations_from_database.changed_attribute_names
end
# Alias for +changed_attributes+