有没有办法将 ActiveRecord 语法和方法与results
Sunspot 提供的对象集成?
例如Post.where(...).search{fulltext 'pizza'}.results
不按 mywhere(...)
子句过滤结果,Post.search{fulltext 'pizza'}.results.where(...)
返回NoMethodError: undefined method 'where' for #<Sunspot::Search::PaginatedCollection:0x007fe9b388bd88>
如果不为所有内容编制索引,有没有办法将我的 Sunspot 搜索与 ActiveRecord 查询相协调?我的一些 AR 过滤器过于复杂,无法简单地用 Sunspot 的首选语法重写。