:index => :not_analyzed
フィールドにマップした場合、またはフィールドに追加しなかった場合はどうなりますか? メインの github タイヤ ページまたは elasticsearch.org Web サイトで定義を見つけることができませんでした。
コードの例:
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