aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/explain_subscriber.rb
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2012-02-03 16:06:50 -0800
committerXavier Noria <fxn@hashref.com>2012-02-03 16:10:39 -0800
commit1e5cdbddfca9305fd627a2c6a967d1e410e97100 (patch)
tree85f7489dc02f61b6be599ad7dda3500b3b70550d /activerecord/lib/active_record/explain_subscriber.rb
parent393f797be868c46e9a25c6f07760e4cd69d150ea (diff)
downloadrails-1e5cdbddfca9305fd627a2c6a967d1e410e97100.tar.gz
rails-1e5cdbddfca9305fd627a2c6a967d1e410e97100.tar.bz2
rails-1e5cdbddfca9305fd627a2c6a967d1e410e97100.zip
let automatic EXPLAIN ignore CACHE notifications
Diffstat (limited to 'activerecord/lib/active_record/explain_subscriber.rb')
-rw-r--r--activerecord/lib/active_record/explain_subscriber.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/explain_subscriber.rb b/activerecord/lib/active_record/explain_subscriber.rb
index fc76410499..1f8c4fc203 100644
--- a/activerecord/lib/active_record/explain_subscriber.rb
+++ b/activerecord/lib/active_record/explain_subscriber.rb
@@ -11,7 +11,10 @@ module ActiveRecord
# SCHEMA queries cannot be EXPLAINed, also we do not want to run EXPLAIN on
# our own EXPLAINs now matter how loopingly beautiful that would be.
- IGNORED_PAYLOADS = %w(SCHEMA EXPLAIN)
+ #
+ # On the other hand, we want to monitor the performance of our real database
+ # queries, not the performance of the access to the query cache.
+ IGNORED_PAYLOADS = %w(SCHEMA EXPLAIN CACHE)
def ignore_payload?(payload)
payload[:exception] || IGNORED_PAYLOADS.include?(payload[:name])
end