这篇小菜给大家演示和讲解一些Elasticsearch的API,如在工作中用到时,方便查阅。
一、Index API
创建索引库
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
curl -XPUT
'http://127.0.0.1:9200/test_index/'
-d '{
"settings"
: {
"index"
: {
"number_of_shards"
: 3,
"number_of_replicas"
: 1
}
},
"mappings"
: {
"type_test_01"
: {
"properties"
: {
"field1"
|