我正在使用 Elasticsearch Rails gem,并且在我的模型中使用了两件事:
def as_indexed_json
end
和
settings index: { number_of_shards: 1 } do
mapping dynamic: 'false' do
indexes :id
indexes :customer do
indexes :first_name
end
end
end
我已阅读文档,但我不明白每个文档的目的是什么。我想弄清楚的是这些是用于搜索索引数据还是用于创建索引数据?