aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorSean Griffin <sean@thoughtbot.com>2015-01-20 14:09:53 -0700
committerSean Griffin <sean@thoughtbot.com>2015-01-20 14:42:15 -0700
commitbe9b68038e83a617eb38c26147659162e4ac3d2c (patch)
tree49c393437f2d92da3f6cf6a1ef09ee7eb9b4b6ca /activerecord/CHANGELOG.md
parent08fe700e2fd57a63d1ee899b63e0e818bc0f4e69 (diff)
downloadrails-be9b68038e83a617eb38c26147659162e4ac3d2c.tar.gz
rails-be9b68038e83a617eb38c26147659162e4ac3d2c.tar.bz2
rails-be9b68038e83a617eb38c26147659162e4ac3d2c.zip
Introduce `ActiveRecord::Base#accessed_fields`
This method can be used to see all of the fields on a model which have been read. This can be useful during development mode to quickly find out which fields need to be selected. For performance critical pages, if you are not using all of the fields of a database, an easy performance win is only selecting the fields which you need. By calling this method at the end of a controller action, it's easy to determine which fields need to be selected. While writing this, I also noticed a place for an easy performance win internally which I had been wanting to introduce. You cannot mutate a field which you have not read. Therefore, we can skip the calculation of in place changes if we have never read from the field. This can significantly speed up methods like `#changed?` if any of the fields have an expensive mutable type (like `serialize`) ``` Calculating ------------------------------------- #changed? with serialized column (before) 391.000 i/100ms #changed? with serialized column (after) 1.514k i/100ms ------------------------------------------------- #changed? with serialized column (before) 4.243k (± 3.7%) i/s - 21.505k #changed? with serialized column (after) 16.789k (± 3.2%) i/s - 84.784k ```
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index d5c141630e..45c3cb0690 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,9 @@
+* Add `ActiveRecord::Base#accessed_fields`, which can be used to quickly
+ discover which fields were read from a model when you are looking to only
+ select the data you need from the database.
+
+ *Sean Griffin*
+
* Introduce the `:if_exists` option for `drop_table`.
Example: