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?
|
Say I allow people to vote on items, and I am doing this:
Won't this have issues if multiple people are biding on an item at the same time? |
|||
|
|
|
Absolutely it can have concurrency issues. Rails provides increment_counter to handle this:
This runs the SQL on the database:
See here for more details: http://api.rubyonrails.org/classes/ActiveRecord/CounterCache.html#method-i-increment_counter |
|||