标签: c# elasticsearch nest
这可能已在这里得到解答:Does NEST support updating index analysis?但我不确定我完全理解答案。我想更新分析。具体来说,我创建了一个全文搜索的CustomAnalyzer。我想更新一下。好像我不能。我是否必须删除它并重新创建它?
答案 0 :(得分:1)
您只能通过在调用.UpdateSettings()之前和之后关闭并重新打开索引来更新分析设置(对于新字段,新分析组件)。
.UpdateSettings()
在大多数情况下,最好使用适当的设置创建新索引并重新编入索引。
http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/indices-update-settings.html#update-settings-analysis