Rails acts_as_votable
gem 生成当前字段集:
:cached_votes_score
:cached_votes_total
:cached_weighted_total
:cached_weighted_average
:cached_votes_up
:cached_votes_down
:cached_weighted_score
哪些字段可以删除,只显示投票的平均结果?
Rails acts_as_votable
gem 生成当前字段集:
:cached_votes_score
:cached_votes_total
:cached_weighted_total
:cached_weighted_average
:cached_votes_up
:cached_votes_down
:cached_weighted_score
哪些字段可以删除,只显示投票的平均结果?
根据文档,缓存是可选的,用于提高性能。如果他们不需要你,你可以简单地删除这些列。
为了加快执行速度,您可以将缓存列添加到可投票模型的表中。这些列将在每次投票后自动更新。