标签:source arch pen lap 排序 splay desc value 技术
ElasticSearch学习
match_all: 全部查询
GET dw_app_car_offering_price_ds/_search { "query": { "match_all": {} } }
单个查询
GET dw_app_car_offering_price_ds/_search { "query": { "term": { "model_code": { "value": "12550-n" } } } }
size:默认10条
GET dw_app_car_offering_price_ds/_search { "query": { "term": { "model_code": { "value": "12550-n" } } }, "size": 20 }
from size :从某个from索引的size条数据
GET dw_app_car_offering_price_ds/_search { "query": { "term": { "source": { "value": "che168" } } }, "from": 10, "size": 10 }
sort :排序
GET dw_app_car_offering_price_ds/_search { "query": { "bool": { "must": [ { "term": { "model_code": { "value": "201795" } } }, { "term": { "source": { "value": "che168" } } }, { "term": { "city_code": { "value": "00002" } } } ] } }, "size": 100, "sort": [ { "ds": { "order": "desc" } } ] }
_source:条件查询
GET dw_app_car_offering_price_ds/_search { "query": { "term": { "model_code": { "value": "12550-n" } } }, "_source": ["offering_price_50","city_code"] }
标签:source arch pen lap 排序 splay desc value 技术
原文地址:https://www.cnblogs.com/wanghongye/p/10993627.html