通过id搜索太阳黑子

时间:2012-09-18 13:24:49

标签: solr sunspot

是否有任何方法可以通过id使用subspot

搜索实体 像这样:

Content.search do
  with(:ids, [1,2,3])
end

1 个答案:

答案 0 :(得分:0)

不幸的是,实现这一目标的唯一方法是索引id字段:

class YourModel < ActiveRecord::Base
  searchable do
    integer :id
    # ...
  end
end