我有一个video_votes表,其中包含一个名为value的列设置为1或-1的所有投票。我想总结视频投票的所有价值并显示净投票数。首先,我应该如何总结,其次,我应该将这个值存储在我的视频表中吗?如果是这样,怎么样?
答案 0 :(得分:7)
我会从这开始,直到演出成为一个问题:
class Video < AR::Base
has_many :video_votes
def vote_sum
video_votes.sum(:value)
end
end
class VideoVote < AR::Base
belongs_to :video
validates_inclusion_of :value, :in => [-1,1]
end
一旦性能成为一个问题,我想缓存总和值,我可能会做这样的事情:
class Video < AR::Base
has_many :video_votes
# Override vote_sum attribute to get the db count if not stored in the db yet.
# The alternative is that you could remove this method and have the field
# populated by a migration.
def vote_sum
read_attribute(:vote_sum) || video_votes.sum(:value)
end
end
class VideoVote < AR::Base
belongs_to :video
validates_inclusion_of :value, :in => [-1,1]
after_create :update_video_vote_sum
private
def update_video_vote_sum
video.update_attributes(:vote_sum => video.vote_sum + value)
end
end
查看关于“覆盖默认访问者”的AR文档(向下滚动一下) http://ar.rubyonrails.org/classes/ActiveRecord/Base.html
答案 1 :(得分:1)
在您的视频模型中:
def total_votes
self.votes.sum(:value)
end
一个例子可能是:
@video.total_votes
答案 2 :(得分:0)
使用ActiveRecord's sum
方法。
VideoVote.sum('value')
您不应将其存储在同一个表中。如果您要汇总其他字段,请创建“汇总”表并定期汇总字段并将值存储在那里。在这种情况下,ActiveRecord的其他calculation methods可能会引起关注。
答案 3 :(得分:0)
我要在模型的水平上总结2个字段:
def update_sum_times
update_attribute(:sum_of_fields, calc_two_dates)
end
def calc_two_dates
date_one + date_two
end