Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Say I allow people to vote on items, and I am doing this:

bid = Bid.new
..
bid.save!


item.total_bids += 1
item.save!

Won't this have issues if multiple people are biding on an item at the same time?

share|improve this question

1 Answer

up vote 5 down vote accepted

Absolutely it can have concurrency issues. Rails provides increment_counter to handle this:

Item.increment_counter( :total_bids, item.id )

This runs the SQL on the database:

UPDATE items SET total_bids = total_bids + 1 WHERE id = x

See here for more details: http://api.rubyonrails.org/classes/ActiveRecord/CounterCache.html#method-i-increment_counter

share|improve this answer
What if I want to set the count to 10, or decrement by 2? – Blankman Sep 5 '11 at 16:31
1  
Then see the more generic update_counters routine: Item.update_counters item.id, :total_bids => -2 – asc99c Oct 7 '11 at 15:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.