GET _search
{
"query": {
"match_all": {}
}
}
GET /
PUT /order
{
"mappings": {
"properties": {
"info":{
"type": "text",
"analyzer": "ik_smart"
},
"brand":{
"type": "keyword"
}
}
}
}
GET /order
GET /shopping
GET /user
DELETE /order
PUT /order/_mapping
{
"properties":{
"number":{
"type": "integer"
}
}
}
PUT /order/_mapping
{
"properties":{
"number":{
"type": "long"
}
}
}
POST /order/_doc/1
{
"info":"华为Mate5",
"brand":"华为",
"number": 10000
}
PUT /order/_doc/2
{
"info":"苹果16",
"brand":"苹果",
"number": 30000
}
POST /order/_doc/1/_update
{
"doc":{
"number": 111
}
}
GET /order/_doc/1
DELETE /order/_doc/2
GET /shopping/_doc/1001
GET /user/_doc/1
POST /_analyze
{
"text":"站稳啦,要上高速啦,apple",
"analyzer": "standard"
}
POST /_analyze
{
"text":"站稳啦,要上高速啦,apple",
"analyzer": "english"
}
POST /_analyze
{
"text":"站稳啦,要上高速啦,apple",
"analyzer": "ik_max_word"
}
POST /_analyze
{
"text":"站稳啦,要上高速啦,apple",
"analyzer": "ik_smart"
}