aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/query_cache.rb
Commit message (Expand)AuthorAgeFilesLines
* 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