aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/base.rb
diff options
context:
space:
mode:
authorJamis Buck <jamis@37signals.com>2007-02-07 16:10:40 +0000
committerJamis Buck <jamis@37signals.com>2007-02-07 16:10:40 +0000
commit83752373b9c83bf585b5fe44836c65612b680cf9 (patch)
tree0096d86743e56f8266daa280d4e364db734e3dab /activerecord/lib/active_record/base.rb
parentf458b376c545d8eae5189d1ecc16245cafe7e796 (diff)
downloadrails-83752373b9c83bf585b5fe44836c65612b680cf9.tar.gz
rails-83752373b9c83bf585b5fe44836c65612b680cf9.tar.bz2
rails-83752373b9c83bf585b5fe44836c65612b680cf9.zip
Made increment_counter/decrement_counter play nicely with optimistic locking, and added a more general update_counters method
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6139 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/lib/active_record/base.rb')
-rwxr-xr-xactiverecord/lib/active_record/base.rb23
1 files changed, 21 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/base.rb b/activerecord/lib/active_record/base.rb
index af3d1997c5..2127f64a1b 100755
--- a/activerecord/lib/active_record/base.rb
+++ b/activerecord/lib/active_record/base.rb
@@ -519,18 +519,37 @@ module ActiveRecord #:nodoc:
connection.select_value(sql, "#{name} Count").to_i
end
+ # A generic "counter updater" implementation, intended primarily to be
+ # used by increment_counter and decrement_counter, but which may also
+ # be useful on its own. It simply does a direct SQL update for the record
+ # with the given ID, altering the given hash of counters by the amount
+ # given by the corresponding value:
+ #
+ # Post.update_counters 5, :comment_count => -1, :action_count => 1
+ # # UPDATE posts
+ # # SET comment_count = comment_count - 1,
+ # # action_count = action_count + 1
+ # # WHERE id = 5
+ def update_counters(id, counters)
+ updates = counters.inject([]) { |list, (counter_name, increment)|
+ sign = increment < 0 ? "-" : "+"
+ list << "#{counter_name} = #{counter_name} #{sign} #{increment.abs}"
+ }.join(", ")
+ update_all(updates, "#{primary_key} = #{quote_value(id)}")
+ end
+
# Increments the specified counter by one. So <tt>DiscussionBoard.increment_counter("post_count",
# discussion_board_id)</tt> would increment the "post_count" counter on the board responding to discussion_board_id.
# This is used for caching aggregate values, so that they don't need to be computed every time. Especially important
# for looping over a collection where each element require a number of aggregate values. Like the DiscussionBoard
# that needs to list both the number of posts and comments.
def increment_counter(counter_name, id)
- update_all "#{counter_name} = #{counter_name} + 1", "#{primary_key} = #{quote_value(id)}"
+ update_counters(id, counter_name => 1)
end
# Works like increment_counter, but decrements instead.
def decrement_counter(counter_name, id)
- update_all "#{counter_name} = #{counter_name} - 1", "#{primary_key} = #{quote_value(id)}"
+ update_counters(id, counter_name => -1)
end