PUT http://127.0.0.1:9200/peopleapp
{ "setting":{ "number_of_shards":5, "number_of_replicas":1 }, "mappings":{ "man":{ "properties":{ "name":{ "type":"text" }, "country":{ "type":"keyword" }, "age":{ "type":"integer" }, "date":{ "type":"date", "format":"yyyy-MM-dd HH:mm::ss||yyyy-MM-dd||epoch_millis" } } } } }
結構化建立 須要利用mappings 結構化關鍵詞。less
{ "cs": { "properties": { "title": { "type": "text" } } } }
{ "name":"張仁杰", "country":"China", "age":30, "date":"1987-06-01" }
POST http://127.0.0.1:9200/people/manorm
{ "name":"張惠", "country":"China", "age":28, "date":"1990-11-01" }
{ "doc":{ "name":"Jack", "age":31 } }
{ "script":{ "lang":"painless", "inline":"ctx._source.age-=10" } }
{ "script":{ "lang":"painless", "inline":"ctx._source.age=params.age", "params":{ "age":"100" } } }
1.刪除文檔文檔
DELETE http://127.0.0.1:9200/people/man/1get
DELETE http://127.0.0.1:9200/peopleit