我希望ElasticSearch(具体为Tire gem)根据关键字出现在字段中的次数返回结果。例如,我在名为Article的模型中为字段标题建立索引。我有两个对象,第一个对象的标题值为“有趣的主题”,而第二个对象的标题值为“有趣的主题”。我想以这样一种方式进行索引,如果我搜索关键字“Funny”,则第一个对象将首先返回,因为它的标题中出现了两个“Funny”字样。是否可以通过Tire做到这一点?索引方法又叫什么?

最佳答案

这是一个有效的示例,此处的关键因素是boostvalue必须足够高,并且您不能在查询中使用通配符。

require 'tire'
require 'yajl/json_gem'

articles = [
  { :id => '0', :type => 'article', :title => 'nothing funny'},
  { :id => '1', :type => 'article', :title => 'funny'},
  { :id => '2', :type => 'article', :title => 'funny funny funny'}
]

Tire.index 'articles' do
  import articles
end

Tire.index 'articles' do
  delete

  create :mappings => {
    :article => {
      :properties => {
        :id       => { :type => 'string', :index => 'not_analyzed', :include_in_all => false },
        :title    => { :type => 'string', :boost => 50.0,            :analyzer => 'snowball'  },
        :tags     => { :type => 'string', :analyzer => 'keyword'                             },
        :content  => { :type => 'string', :analyzer => 'snowball'                            }
      }
    }
  }

  import articles do |documents|
    documents.map { |document| document.update(:title => document[:title].downcase) }
  end

  refresh
end

s = Tire.search('articles') do
  query do
    string "title:funny"
  end
end

s.results.each do |document|
  puts "* id:#{ document.id } #{ document.title } score: #{document._score}"
end


* id:2 funny funny funny score: 14.881571
* id:1 funny score: 14.728935
* id:0 nothing funny score: 9.81929

10-01 17:10