aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/query_cache.rb
Commit message (Expand)AuthorAgeFilesLines
* 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
* r3616@asus: jeremy | 2005-09-26 23:09:28 -0700Jeremy Kemper2005-10-161-8/+9
* A bit more work on the still unfinished query cache #1722David Heinemeier Hansson2005-07-221-3/+3
* Fixed that each request with the WEBrick adapter would open a new database co...David Heinemeier Hansson2005-07-101-2/+1
* Made documentation ready for release (AR)David Heinemeier Hansson2005-07-061-2/+2
* Started work on a per-request query cacheDavid Heinemeier Hansson2005-05-021-0/+64