aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/query_cache.rb
Commit message (Expand)AuthorAgeFilesLines
* Reduce Array allocationsAkira Matsuda2019-07-311-2/+2
* Fix query cache for multiple connectionsEileen Uchitelle2018-11-201-4/+11
* Optimize the code inside AR::QueryCache middlewareBogdan Gusiev2018-04-041-11/+4
* Use the query cache when connection is already connectedyuuji.yaginuma2018-02-191-6/+6
* Merge pull request #28869 from eugeneius/query_cache_all_poolsMatthew Draper2017-11-171-6/+9
|\
| * Enable query cache on all connection poolsEugene Kenny2017-04-241-6/+9
* | 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
* | Enable query cache if set a configurationsTsukasa OISHI2017-06-291-6/+6
|/
* Configure query caching (per thread) on the connection poolMatthew Draper2016-11-061-2/+9
* Try harder to avoid making a connection while releasing itMatthew Draper2016-11-061-2/+2
* Clear query cache during checkin, instead of an execution callbackMatthew Draper2016-10-271-9/+2
* Clear the correct query cacheSamuel Cochran2016-10-261-4/+4
* Avoid bumping the class serial when invoking executorMatthew Draper2016-10-031-6/+4
* Don't attempt to clear active connections unless we'ere connectedSean Griffin2016-06-291-1/+1
* Remove unused `ActiveRecord::Base.connection_id`Sean Griffin2016-06-291-6/+2
* Respect the current `connected?` method when calling `cache`Arthur Neves2016-06-141-2/+2
* Do not attempt to return connection with open transaction to pool (#24610)Sean Griffin2016-04-221-2/+3
* Directly support stateful executor hooksMatthew Draper2016-04-051-14/+18
* Publish AS::Executor and AS::Reloader APIsMatthew Draper2016-03-021-25/+17
* remove blank lines in the start of the ActiveRecord filesPonomarev Nikolay2014-07-291-1/+0
* Avoid retrieving connection in ActiveRecord::QueryCache multiple times.Guo Xiang Tan2014-07-071-2/+3
* Fix typo.Hendy Tanata2012-12-031-2/+2
* Cleans and removes 'Examples' tag [ci skip]Alvaro Pereyra2012-12-011-0/+2
* Fix #6951. Use query cache/uncache, when using not only database.yml but also...kennyj2012-10-311-6/+6
* load active_support/core_ext/object/blank in active_support/railsXavier Noria2012-08-021-1/+0
* Restore connection_id on error.kennyj2012-07-231-4/+10
* use Rack::BodyProxy in activerecord middlewaresSergey Nartimov2012-01-161-35/+10
* use thread locals and an instance variable within QueryCache#BodyProxy to mai...Mark J. Titorenko2011-10-071-2/+4
* clear and disable query cache when an exception is raised from called middlewareAaron Patterson2011-08-281-0/+6
* Fix inconsistencies by being polite to the wrapped body. Needed for Rack::Sen...Steve Hodgkiss2011-06-181-0/+8
* ensure query cache is cleared when Rack body is closed, fixes bug reported on...Aaron Patterson2011-05-041-0/+1
* introduce a body proxy to ensure that query cache is enabled during streamingAaron Patterson2011-05-021-3/+24
* Adds basic description and title.Rizwan Reza2010-06-161-0/+1
* adds missing requires for Object#blank? and Object#present?Xavier Noria2010-03-281-0/+2
* ActiveRecord::QueryCache middlewareJoshua Peek2008-12-221-13/+25
* Removed query cache rescue as it could cause code to be run twice (closes #10...David Heinemeier Hansson2007-12-071-2/+0
* Fixed that the Query Cache should just be ignored if the database is misconfi...David Heinemeier Hansson2007-12-061-0/+2
* Speed up and simplify query caching.Jeremy Kemper2007-09-171-113/+15
* Match Fixnum and Float in particular. Rescue dup error and return result.Jeremy Kemper2007-09-081-4/+5
* Explicitly require active_record/query_cache before using it.Jeremy Kemper2007-09-081-1/+1
* Ensure QueryCache doesn't try to dup numeric results (does not affect the maj...Michael Koziarski2007-09-021-5/+6
* dont call #collect on a string when returning query cache results. Closes #9...Rick Olson2007-07-251-1/+1
* Perform a deep #dup on query cache results so that modifying activerecord att...Rick Olson2007-07-251-2/+8
* Use the query cache iff Active Record is configured.Jeremy Kemper2007-02-221-8/+16
* Fixed query cache when multiple database connections were involvedTobias Lütke2007-02-211-2/+2
* Enable active record cache automatically for all actionsTobias Lütke2007-02-211-4/+16
* You can now use cache in instance hierachies. This allows ActiveRecord::Base....Tobias Lütke2007-02-201-3/+15
* Introducing Model.cache { ... } for the occasional query caching needs. ( fan...Tobias Lütke2007-02-061-18/+33