如果:index => :not_analyzed
我将其映射到字段或不将其添加到字段,该怎么办?我在 github 轮胎主页面或 elasticsearch.org 网站上找不到定义。
代码示例:
class Article < ActiveRecord::Base
include Tire::Model::Search
include Tire::Model::Callbacks
#...
mapping do
indexes :id, :index => :not_analyzed
indexes :title, :analyzer => 'snowball', :boost => 100
end
end