赞
踩
第一步都是先打开kibana(开发者工具Dev Tools)控制台http://localhost:5601/app/kibana#/dev_tools/console?_g=()
在插入数据的基础上进行
1. 查询所有
GET /fei/_search
{
"query": { "match_all": {} }
}
2. id到排序
GET /fei/_search
{
"query": { "match_all": {} },
"sort": [
{ "_id": "desc" }
]
}
3. 只返回部分字段
GET /fei/_search
{
"query": { "match_all": {} },
"_source": ["name","price"]
}
4. 条件查询
GET /fei/_search
{
"query": { "match": { "name": "时尚连衣裙" } }
}
5. 分页查询
GET /fei/_search
{
"query": { "match_all": {} },
"from": 1,
"size": 3,
"sort": { "_id": { "order": "desc" } }
}
只返回前三条
GET /fei/_search
{
"size": 0,
"aggs": {
"group_by_place": {
"terms": {
"field": "place.keyword",
"size": 3
}
}
}
}
相当于SQL语句select count(*),place from product group by place limit 0,3
。语句中的第一个size:0表示可以不显示每条数据,第二个size:3表示分组数据只显示3条。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。