W twoim przypadku licznik nie zostanie zaktualizowany, gdy zmieni się identyfikator użytkownika produktu, więc polecam counter_cache
szyn
class Product < ActiveRecord::Base
belongs_to :user, counter_cache: true
end
Spójrz także na ten klejnot
Uwaga :- To nie rozwiąże problemu wstawiania per row insertion
choć problem
Musisz wtedy napisać własny licznik, coś takiego jak podążanie
class Product < ApplicationRecord
has_many :products
attr_accessor :update_count
belongs_to :user#, counter_cache: true
after_save do
update_counter_cache
end
after_destroy do
update_counter_cache
end
def update_counter_cache
return unless update_count
user.products_count = user.products.count
user.save
end
end
w konsoli szynowej
10.times{|n| Product.new(name: "Latest New Product #{n}", update_count: n == 9, user_id: user.id).save}