我尝试使用以下代码创建内存索引,但它会创建常规索引。 有什么想法吗?
var node = new Uri("http://localhost:9200");
var settings = new ConnectionSettings(node);
var client = new Elasticsearch.Net.ElasticsearchClient(settings);
var js = JsonConvert.SerializeObject("{settings: { index.store.type: memory}");
var index = client.IndicesCreate("sampleIndex", js);
答案 0 :(得分:0)
IndicesCreate
方法调用的第二个参数不正确。请参阅下面的代码,以获得更好的实现方法。前三行是相同的。在第四个中,我们正确地为索引创建设置。
_body = new {
settings = new {
index = new {
store = new {
type = "memory"
}
}
}
};
var index = client.IndicesCreate("sampleIndex", _body);