更新到NEST 0.11.5後,好像NEST.ElasticClient.MapRaw
和.CreateIndexRaw
方法不再受支持。他們是否已被重新命名或移動或完全消失?ElasticClient.MapRaw和.CreateIndexRaw消失了嗎?
如果它們不存在,我怎樣才能定義索引創建的自定義分析設置?這是我試過的:
var indexSettings = new IndexSettings()
{
NumberOfReplicas = 1,
NumberOfShards = 2,
Analysis = new AnalysisSettings() // doesn't work, no setter
{
// here's where my settings would go...
}
};
var response = elasticClient.CreateIndex(indexName, indexSettings);
由於沒有爲IndexSettings.Analysis定義setter,因此不起作用。
YEPP的作品。謝謝! – Max