What does :index => :not_analyzed
do if I map it to a field or if I don't add it to a field? I couldn't find a definition on the main github tire page or in the elasticsearch.org website.
Example of the code:
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