从 acts_as_votable gem 迁移中删除不必要的字段
Delete unnecessary fields from acts_as_votable gem migration
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
哪些字段可以删除,只显示投票的平均结果?
根据docs,缓存是可选的,用于提高性能。如果他们不需要你,你可以简单地删除这些列。
To speed up perform you can add cache columns to your votable model's table. These columns will automatically be updated after each vote.
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
哪些字段可以删除,只显示投票的平均结果?
根据docs,缓存是可选的,用于提高性能。如果他们不需要你,你可以简单地删除这些列。
To speed up perform you can add cache columns to your votable model's table. These columns will automatically be updated after each vote.