query string search
GET /ecommerce/product/_search// 返回结果{"took": 31, // 耗费了31ms"timed_out": false, // 是否超时"_shards": {"total": 5,"successful": 5,"failed": 0},"hits": {"total": 2, // 查询结果数量"max_score": 1, // score就是document对于一个search的相关度的匹配分数,匹配度越高,分数越高"hits": [ // 匹配了搜索的详细分数{"_index": "ecommerce","_type": "product","_id": "2","_score": 1,"_source": {"name": "jiajieshi yagao","desc": "youxiao fangzhu","price": 25,"producer": "jiajieshi producer","tags": ["fangzhu"]}},{"_index": "ecommerce","_type": "product","_id": "3","_score": 1,"_source": {"name": "zhonghua yagao","desc": "qingxinkouqi","price": 40,"producer": "zhonghua producer","tags": ["qingxin"]}}]}}
GET /ecommerce/product/_search?q=name:yagao&sort=price:desc// 返回结果{"took": 2,"timed_out": false,"_shards": {"total": 5,"successful": 5,"failed": 0},"hits": {"total": 2,"max_score": null,"hits": [{"_index": "ecommerce","_type": "product","_id": "3","_score": null,"_source": {"name": "zhonghua yagao","desc": "qingxinkouqi","price": 40,"producer": "zhonghua producer","tags": ["qingxin"]},"sort": [40]},{"_index": "ecommerce","_type": "product","_id": "2","_score": null,"_source": {"name": "jiajieshi yagao","desc": "youxiao fangzhu","price": 25,"producer": "jiajieshi producer","tags": ["fangzhu"]},"sort": [25]}]}}
query DSL
查询所有商品
// 查询所有商品GET /ecommerce/product/_search{"query": {"match_all": {}}}
根据名称查询并且按照价格排序
GET /ecommerce/product/_search{"query": {"match": {"name": "yagao"}},"sort": [{"price": {"order": "asc"}}]}
分页查询
GET /ecommerce/product/_search{"query": {"match_all": {}},"from": 0, // 从哪一条开始查"size": 1 // 查询多少条}
只查询部分字段
GET /ecommerce/product/_search{"query": {"match_all": {}},"_source": ["name"]}
复杂查询条件 query filter
GET /ecommerce/product/_search{"query": {"bool": {"must": {"match": {"name": "yagao"}},"filter": {"range": {"price": {"gt": 30}}}}}}
全文检索
分数反应了分数
GET /ecommerce/product/_search{"query": {"match": {"producer": "gaolujie producer"}}}// 返回结果{"took": 3,"timed_out": false,"_shards": {"total": 5,"successful": 5,"failed": 0},"hits": {"total": 4,"max_score": 0.51623213,"hits": [{"_index": "ecommerce","_type": "product","_id": "1","_score": 0.51623213,"_source": {"name": "gaolujie yagao","desc": "gaoxiao meibai","price": 30,"producer": "gaolujie producer","tags": ["meibai","fangzhu"]}},{"_index": "ecommerce","_type": "product","_id": "3","_score": 0.25811607,"_source": {"name": "heiren yagao","desc": "hei","price": 38,"producer": "heiren producer","tags": ["hei"]}},{"_index": "ecommerce","_type": "product","_id": "2","_score": 0.16358379,"_source": {"name": "jiajieshi yagao","desc": "youxiao fangzhu","price": 25,"producer": "jiajieshi producer","tags": ["fangzhu"]}},{"_index": "ecommerce","_type": "product","_id": "4","_score": 0.16358379,"_source": {"name": "heiren yagao","desc": "hei","price": 38,"producer": "heiren producer","tags": ["hei"]}}]}}
短语搜索
不会对查询条件进行分词
GET /ecommerce/product/_search{"query": {"match_phrase": {"producer": "gaolujie"}}}// 返回结果{"took": 1,"timed_out": false,"_shards": {"total": 5,"successful": 5,"failed": 0},"hits": {"total": 1,"max_score": 0.25811607,"hits": [{"_index": "ecommerce","_type": "product","_id": "1","_score": 0.25811607,"_source": {"name": "gaolujie yagao","desc": "gaoxiao meibai","price": 30,"producer": "gaolujie producer","tags": ["meibai","fangzhu"]}}]}}
高亮搜索结果
GET /ecommerce/product/_search{"query": {"match": {"producer": "producer"}},"highlight": {"fields": {"producer": {}}}}// 返回结果{"took": 7,"timed_out": false,"_shards": {"total": 5,"successful": 5,"failed": 0},"hits": {"total": 4,"max_score": 0.25811607,"hits": [{"_index": "ecommerce","_type": "product","_id": "1","_score": 0.25811607,"_source": {"name": "gaolujie yagao","desc": "gaoxiao meibai","price": 30,"producer": "gaolujie producer","tags": ["meibai","fangzhu"]},"highlight": {"producer": ["gaolujie <em>producer</em>"]}},{"_index": "ecommerce","_type": "product","_id": "3","_score": 0.25811607,"_source": {"name": "heiren yagao","desc": "hei","price": 38,"producer": "heiren producer","tags": ["hei"]},"highlight": {"producer": ["heiren <em>producer</em>"]}},{"_index": "ecommerce","_type": "product","_id": "2","_score": 0.16358379,"_source": {"name": "jiajieshi yagao","desc": "youxiao fangzhu","price": 25,"producer": "jiajieshi producer","tags": ["fangzhu"]},"highlight": {"producer": ["jiajieshi <em>producer</em>"]}},{"_index": "ecommerce","_type": "product","_id": "4","_score": 0.16358379,"_source": {"name": "heiren yagao","desc": "hei","price": 38,"producer": "heiren producer","tags": ["hei"]},"highlight": {"producer": ["heiren <em>producer</em>"]}}]}}
