最近刚开始使用 ElasticSearch-ruby,不知道如何在 model 中设置,排除不需要索引的字段,就是让某一个字段无法被搜索到。
class Article < ActiveRecord::Base
include Elasticsearch::Model
include Elasticsearch::Model::Callbacks
attr_accessible :title, :content, :published_on
mapping do
indexes :title, type: 'string'
indexes :content, store: 'false', index: 'no'
end
end
这样好像不起作用啊 ```