aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/explain.rb
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #6197 from ↵Xavier Noria2013-01-221-6/+7
| | | | | | blakesmith/connection_adapters_without_explain_support Don't run explain on slow queries for database adapters that don't support it
* disable automatic explain if there is no logger [closes #4671]Xavier Noria2012-01-261-0/+2
|
* AS::Concern is not really needed for AR::ExplainXavier Noria2011-12-161-71/+69
|
* Split out most of the AR::Base code into separate modules :cake:Jon Leighton2011-12-151-61/+74
|
* moves some auto explain logic to the subscriber [José Valim & Xavier Noria]Xavier Noria2011-12-041-17/+0
|
* implements a much faster auto EXPLAIN, closes #3843 [José Valim & Xavier Noria]Xavier Noria2011-12-041-47/+40
| | | | | | | | | | | | | | | | | | | | | | | | | This commit vastly reduces the impact of auto explain logging when enabled, while keeping a negligible cost when disabled. The first implementation was based on the idea of subscribing to "sql.active_record" when needed, and unsubscribing once done. This is the idea behind AR::Relation#explain. Subscribe, collect, unsubscribe. But with the current implementation of notifications unsubscribing is costly, because it wipes an internal cache and that puts a penalty on the next event. So we are switching to an approach where a long-running subscriber is listening. Instead of collecting the queries with a closure in a dedicated subscriber, now we setup a thread local. If the feature is disabled by setting the threshold to nil, the subscriber will call a method that does nothing. That's totally cheap.
* removes the convenience instance version of AR::Base.silence_auto_explainXavier Noria2011-12-031-88/+78
| | | | | | | Rationale: As discussed with José and Jon, this convenience shortcut is not clearly justified and it could let the user thing the disabled EXPLAINs are related to the model instance rather than being globally disabled.
* yield > block.callXavier Noria2011-12-021-3/+3
|
* two small details from the previous patchXavier Noria2011-12-021-1/+1
|
* implements AR::Base(.|#)silence_auto_explainXavier Noria2011-12-021-60/+90
|
* revises some details in the previous explain patchXavier Noria2011-12-021-2/+2
|
* implements automatic EXPLAIN logging for slow queriesXavier Noria2011-12-021-0/+76