使用轮胎进行弹性搜索:自定义停用词不起作用

时间:2012-11-16 11:48:32

标签: ruby-on-rails elasticsearch tire

我想在模型中的一个特定字段中添加一组自定义停用词。所以我为该领域添加了一个自定义分析器。但是当我用停用词搜索时,结果仍然显示出来。 我的模型中的代码如下:

settings :analysis => {
 :filter  => {
  :stop_filter => {
    :type        => "stop",
    :stopwords   => ["how", "when", "where", "who", "which", "what", "do", "the", "a", "is", "to"]
  }
 },
 :analyzer => {
  :my_analyzer => {
    :type         => "standard",
    :filter       => "stop_filter",
    :tokenizer    => "standard"
  }
 }
} do
 mapping do
  indexes :id,              :type => 'integer',     :index    => :not_analyzed
  indexes :sortable_id,     :type => 'integer',     :index    => :not_analyzed
  indexes :summary,         :type => 'string',      :analyzer => 'my_analyzer'
 end
end

def self.search_all(search_string = nil, options = {})
  tire.search(:load => true, :page => options[:page] || 1, :per_page => options[:per_page] || 10) do
    query {search_string.present? ? string(search_string) : all}
    filter :term, {:topics_list_filter =>  options[:topic_id]} if options[:topic_id]
    sort {by options[:sort], options[:order] || 'desc'} if options[:sort].present?
  end
end

我还尝试在分析器中选择stopwords作为选项,而不创建stop_filter。我不知道我哪里出错了。

2 个答案:

答案 0 :(得分:2)

您的查询正在搜索使用默认分析器编制索引的_all字段。您可以使用summary替换查询中的默认字段,也可以替换默认分析器。有关详细信息,请参阅How do I set the default analyzer for elastic search with tire?

答案 1 :(得分:0)

您是否重新编制了文档索引?我认为您的映射条件仅在创建文档时发送到ElasticSearch,在某些情况下才会创建索引。