标签: solr sunspot
是否有任何方法可以通过id使用subspot
Content.search do with(:ids, [1,2,3]) end
答案 0 :(得分:0)
不幸的是,实现这一目标的唯一方法是索引id字段:
id
class YourModel < ActiveRecord::Base searchable do integer :id # ... end end