aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb
Commit message (Expand)AuthorAgeFilesLines
* Restore `to_sql` to return only SQL (#29945)Ryuta Kamizono2017-08-181-1/+1
* Add missed `require`yui-knk2017-08-071-0/+2
* Refactor Active Record to let Arel manage bind paramsSean Griffin2017-07-241-2/+2
* Use frozen-string-literal in ActiveRecordKir Shatrov2017-07-191-0/+2
* Revert "Merge pull request #29540 from kirs/rubocop-frozen-string"Matthew Draper2017-07-021-1/+0
* Enforce frozen string in RubocopKir Shatrov2017-07-011-0/+1
* Should use the same connection in using query cacheRyuta Kamizono2017-06-291-0/+1
* Remove delegating to arel in a relationRyuta Kamizono2017-06-291-0/+1
* Ensure test threads share a DB connectioneileencodes2017-02-201-16/+20
* Configure query caching (per thread) on the connection poolMatthew Draper2016-11-061-0/+27
* Merge pull request #26909 from matthewd/query-cache-connectionMatthew Draper2016-11-061-0/+2
|\
| * Clear query cache during checkin, instead of an execution callbackMatthew Draper2016-10-271-0/+2
* | Add more rubocop rules about whitespacesRafael Mendonça França2016-10-291-1/+1
|/
* Preserve cached queries name in AS notificationsJean Boussier2016-09-221-4/+10
* Fix broken comments indentation caused by rubocop auto-correct [ci skip]Ryuta Kamizono2016-09-141-2/+2
* normalizes indentation and whitespace across the projectXavier Noria2016-08-061-14/+14
* modernizes hash syntax in activerecordXavier Noria2016-08-061-1/+1
* Fix `NoMethodError: undefined method `preparable'`Ryuta Kamizono2016-02-291-1/+1
* Ensure prepared statement caching still occurs with Adequate RecordSean Griffin2016-02-111-2/+2
* Restore query cache on rollbackFlorian Weingarten2014-12-011-1/+1
* Make select_all on query cache accept a Relation without binds.Arthur Neves2014-03-131-0/+1
* Currently, we clear query_cache in cache block finish, even if we may already...Vipul A M2013-12-031-1/+1
* Remove confusing generated-code commentaryJeremy Kemper2013-10-281-4/+4
* Merge pull request #11331 from vipulnsward/remove_conditionalAaron Patterson2013-08-071-8/+1
|\
| * Remove conditional, since results are always an instance of `ActiveRecord::Re...Vipul A M2013-07-061-8/+1
* | Move initializing process for query cache to ActiveRecord::ConnectionAdapters...kennyj2013-07-161-0/+6
|/
* updates a dynamic method heredoc docXavier Noria2013-01-281-2/+2
* explains why the query cache checks arel.lockedXavier Noria2013-01-281-0/+2
* Refactor locked? method in query cacheCarlos Antonio da Silva2012-07-071-5/+2
* Disable query cache for lock queriesDamir Zekic2012-07-061-1/+9
* add :nodoc: to internal implementations [ci skip]Francesco Rodriguez2012-06-221-1/+1
* prepared statements can be disabledAaron Patterson2012-02-211-1/+1
* QueryCache will just dup an AR::Result, AR::Result can deep copyAaron Patterson2012-01-311-9/+15
* query cache instrumentation should included the bindings in the payload [clos...Xavier Noria2012-01-301-1/+1
* Make it the responsibility of the connection to hold onto an ARel visitor for...Jon Leighton2011-08-081-2/+3
* introduce a body proxy to ensure that query cache is enabled during streamingAaron Patterson2011-05-021-0/+8
* no need to specify selfAaron Patterson2011-01-051-1/+1
* select_all() should always return an array, so no need to testAaron Patterson2010-10-271-9/+1
* speeding up query cacheAaron Patterson2010-10-271-4/+3
* making query cache work with prepared statementsAaron Patterson2010-10-271-6/+7
* This method is actually not used, it's implemented on the concrete adaptersSantiago Pastorino2010-08-131-8/+0
* eliminate alias_method_chain from ActiveRecordwycats2010-05-091-17/+10
* Change event namespace ordering to most-significant first [#4504 state:resolved]Justin George2010-05-021-1/+1
* clearing up many warnings, removing unnecessary regular expresion comparisons...Aaron Patterson2010-04-101-2/+1
* fix stack trace lines on class_evalSantiago Pastorino2010-04-091-1/+1
* adds missing requires for Object#duplicable?Xavier Noria2010-03-281-0/+2
* Move AR logging responsibilities to ActiveRecord::Railties::Subscriber.José Valim2010-01-131-1/+2
* Inline code comments for class_eval/module_eval [#1657 state:resolved]Xavier Noria2008-12-281-6/+6
* It is not necessary to store QueryCache in a thread local since the cache is ...Joshua Peek2008-10-301-27/+14
* Use database name in query cache thread local key [#1283 state:resolved]Joshua Peek2008-10-301-3/+2