我有三个型号。雇主,用户,工作。
class Employers
has_many :jobs
has_many :users, through: :jobs
end
class User
has_many :jobs
end
class Job
belongs_to :user
belongs_to :employer
end
Job模型有一个名为“current”的布尔列。雇主用户数是通过计算标记为“当前”的所有相关职位得出的。
我选择了自己的缓存计数器,而不是使用活动记录。
我使用Job模型中的before过滤器来增加或减少Employer模型中的users_count。增量按预期工作,但无论我如何调整代码......减量都会使计数值减少2。
我确定我可以稍微清理这些方法......可能会有一些冗余。
class Job
before_destroy :change_employer_users_counter_cache_after_destroy
before_create :change_employer_users_counter_cache_after_create
before_update :change_employer_users_counter_cache_after_update
def change_employer_users_counter_cache_after_create
Operator.increment_counter(:users_count, self.operator_id) if self.current == true
end
def change_employer_users_counter_cache_after_update
if self.current_changed?
if self.current == true
Operator.increment_counter(:users_count, self.operator_id)
else
Operator.decrement_counter(:users_count, self.operator_id)
end
end
end
def change_employer_users_counter_cache_after_destroy
Operator.decrement_counter(:users_count, self.operator_id)
end
end
答案 0 :(得分:0)
gem“counter_culture”处理得非常好......并清理了我的代码。