ElasticSearch DocumentAPIS Create Index API

Posted 一颗小蚕豆 期待发芽

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ElasticSearch DocumentAPIS Create Index API相关的知识,希望对你有一定的参考价值。

 

一、创建索引

/****
* Setting 相关设置
*/
static final Builder builder = Settings.builder().put("index.analysis.search_analyzer.default.type", "ik_smart")
.put("index.analysis.analyzer.default.type", "ik_max_word").put("index.mapping.total_fields.limit", 30000);

client.admin().indices().prepareCreate(indexName).setSettings(builder).get();

二、删除索引
DeleteIndexResponse response = client.admin().indices().prepareDelete(indexName).execute().actionGet();

三、删除文档
DeleteResponse response = client.prepareDelete("twitter", "tweet", "1").get();







以上是关于ElasticSearch DocumentAPIS Create Index API的主要内容,如果未能解决你的问题,请参考以下文章

拼多多授权

angularjs: $http.get with null parameters are not hitting the Web API controller

Elasticsearch 教程

Elasticsearch 基本概念

Elasticsearch 教程

Elasticsearch 基本概念