@search = Sunspot.search(Event, Person, Organization) do
keywords params[:q]
order_by(:score)
end
検索結果に基づいて、各モデルの数を含むモデルのリストを作成したいと思います。
- イベント (12)
- 人 (5)
- 組織 (3)
Sunspot でこのタイプのグループ化を行う方法はありますか?
<% @search.each_hit_with_result do |hit, result| -%>
<%= result.class %> <!- Gives me Model, but repeated -->
<% end %>