cached_votes_up
コミュニティテーブルに呼び出された列があります。次に、番号順にレコードをフェッチしたいと思います。
@search = Community.search do
fulltext params[:search]
with(:genre_id, params[:genre])
order_by :cached_votes_up, :desc
paginate :page => params[:page], :per_page => 5
end
@communities = @search.results
ただし、これは次のエラーを返します。
'cached_votes_up'という名前のコミュニティ用に構成されたフィールドはありません