增
post http://192.168.133.131:9200/shopping/_doc
{
"title":"小米手机",
"category":"小米",
"images":"http://www.gulixueyuan.com/xm.jpg",
"price":4999
}
put http://192.168.133.131:9200/test
删
delete http://192.168.133.131:9200/test
改
post http://192.168.133.131:9200/shopping/_update/1001
{
"doc":{
"title":"华为手机"
}
}
查
get http://192.168.133.131:9200/_cat/indices?v
get http://192.168.133.131:9200/shopping/_doc/1001
get http://192.168.133.131:9200/shopping/_search
{
"query":{
"match":{
"title":"小米"
}
},
"from":0,
"size":2,
"_source":["title"],
"sort":{
"price":{
"order":"desc"
}
}
}