| GET product/_search?q=*&sort=price:desc |
| |
| GET product/_search |
| {"query": {"match_all": {}},"sort": [{"price": {"order": "desc"}}],"from": 0,"size": 2, |
| "_source": ["id","title"] |
| } |
| |
| |
| |
| GET product/_search |
| {"query": {"match": {"title": "小米华为"}} |
| } |
| |
| GET product/_search |
| {"query": {"match": {"price": "2999"}} |
| } |
| |
| |
| |
| GET product/_search |
| {"query": {"match_phrase": {"title": "小米华为"}} |
| } |
| |
| |
| |
| GET product/_search |
| {"query": {"multi_match": {"query": "小米华为","fields": ["title","category"]}} |
| } |
| |
| |
| |
| GET product/_search |
| {"query": {"bool": {"must": [{"match": {"title": "小米"}},{"match": {"price": "3999"}}],"must_not": [{"match": {"category": "小米"}}],"should": [{"match": {"title": "一加"}}]}} |
| } |
| |
| |
| |
| GET product/_search |
| {"query": {"bool": {"must": [{"range": {"price": {"gte": 3999,"lte": 6999}}}]}} |
| } |
| |
| GET product/_search |
| {"query": {"bool": {"filter": [{"range": {"price": {"gte": 3999,"lte": 5999}}}]}} |
| } |
| |
| |
| |
| GET product/_search |
| {"query": {"match": {"title": "小米6"}} |
| } |
| |
| GET product/_search |
| {"query": {"term": {"title": "小米6"}} |
| } |
| |
| GET product/_search |
| {"query": {"match": {"title.keyword": "小米6"}} |
| } |
| |
| |
| |
| |
| |
| GET product/_search |
| {"query": {"match": {"title": "小米"}},"aggs": {"priceAgg": {"terms": {"field": "price","size": 10}},"priceAvg":{"avg": {"field": "price"}}},"size": 0 |
| } |
| |
| |
| |
| GET product/_search |
| {"query": {"match_all": {}},"aggs": {"priceAgg": {"terms": {"field": "price","size": 100},"aggs": {"ageAvg": {"avg": {"field": "price"}}}}} |
| } |
| |
| GET product/_search |
| {"query": {"match_all": {}},"aggs": {"ageAgg": {"terms": {"field": "age","size": 100},"aggs": {"genderAgg": {"terms": {"field": "gender.keyword","size": 10},"aggs": {"balanceAvg": {"avg": {"field": "balance"}},"ageBalanceAvg":{"avg": {"field": "balance"}}}}}}} |
| } |
| |
| |
| GET product/_mapping |
| GET /my-index/_mapping |
| |
| |
| PUT /my-index |
| {"mappings": {"properties": {"age":{"type": "integer"},"email":{"type": "keyword"},"name":{"type": "text"}}} |
| } |
| |
| |
| PUT /my-index/_mapping |
| {"properties": {"employee-id":{"type":"keyword","index":false}} |
| } |
| |
| |
| GET /product/_mapping |
| |
| PUT /newproduct |
| {"mappings": {"properties": {"category" : {"type" : "keyword"},"id" : {"type" : "long"},"images" : {"type" : "text"},"price" : {"type" : "double"},"title" : {"type" : "text"}}} |
| } |
| |
| GET /newproduct/_mapping |
| |
| GET /product/_search |
| |
| POST _reindex |
| {"source": {"index": "product"},"dest": {"index": "newproduct"} |
| } |
| |
| |
| POST _reindex |
| {"source": {"index": "product","type": "_doc"},"dest": {"index": "newproduct"} |
| } |
| |
| |
| POST _analyze |
| {"analyzer": "standard","text": ["中华人民共和国"] |
| } |
| |
| |
| POST _analyze |
| {"analyzer": "ik_smart","text": ["中华人民共和国"] |
| } |
| |
| POST _analyze |
| {"analyzer": "ik_max_word","text": ["中华人民共和国"] |
| } |
| |
| |
| |
| POST _analyze |
| {"analyzer": "ik_max_word","text": ["乔碧罗"] |
| } |