mirror of
https://github.com/github/rails.git
synced 2026-04-04 03:00:58 -04:00
Use the query cache iff Active Record is configured.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6202 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
@@ -87,14 +87,22 @@ module ActiveRecord
|
||||
def query_cache=(cache)
|
||||
query_caches[self] = cache
|
||||
end
|
||||
|
||||
def cache
|
||||
self.query_cache = QueryCache.new(connection_without_query_cache)
|
||||
yield
|
||||
ensure
|
||||
self.query_cache = nil
|
||||
end
|
||||
|
||||
|
||||
# Use a query cache within the given block.
|
||||
def cache
|
||||
# Don't cache if Active Record is not configured.
|
||||
if ActiveRecord::Base.configurations.blank?
|
||||
yield
|
||||
else
|
||||
begin
|
||||
self.query_cache = QueryCache.new(connection_without_query_cache)
|
||||
yield
|
||||
ensure
|
||||
self.query_cache = nil
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
def connection
|
||||
query_cache || connection_without_query_cache
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user