Skip to content

Commit

Permalink
Performance: freeze cached rows instead of duping
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremy committed Aug 19, 2008
1 parent 7fbe226 commit cd8e653
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 14 deletions.
2 changes: 1 addition & 1 deletion activerecord/lib/active_record/base.rb
Original file line number Diff line number Diff line change
Expand Up @@ -612,7 +612,7 @@ def all(*args)
# Post.find_by_sql ["SELECT title FROM posts WHERE author = ? AND created > ?", author_id, start_date]
# > [#<Post:0x36bff9c @attributes={"first_name"=>"The Cheap Man Buys Twice"}>, ...]
def find_by_sql(sql)
connection.select_all(sanitize_sql(sql), "#{name} Load").collect! { |record| instantiate(record) }
connection.select_all(sanitize_sql(sql), "#{name} Load").map { |record| instantiate(record) }
end

# Checks whether a record exists in the database that matches conditions given. These conditions
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,21 +72,12 @@ def columns_with_query_cache(*args)

private
def cache_sql(sql)
result =
if @query_cache.has_key?(sql)
log_info(sql, "CACHE", 0.0)
@query_cache[sql]
else
@query_cache[sql] = yield
end

if Array === result
result.collect { |row| row.dup }
if @query_cache.has_key?(sql)
log_info(sql, "CACHE", 0.0)
@query_cache[sql]
else
result.duplicable? ? result.dup : result
@query_cache[sql] = yield.freeze
end
rescue TypeError
result
end
end
end
Expand Down

0 comments on commit cd8e653

Please sign in to comment.