其他分享
首页 > 其他分享> > 随记:cerebro命令查询界面命令

随记:cerebro命令查询界面命令

作者:互联网

bundleskuindex/_search

查询文档中字段lastModified值范围在2022-06-01和2022-06-05之间
{
"query":{
"range":{
"lastModified":{
"gte" : "2022-06-01",
"lt" : "2022-06-05"
}
}
}
}

查询文档中字段code值为CE0001990或GY0016517
{
"query":{
"terms":{
"code":["CE0001990","GY0016517"]
}
}
}

文档中是否包含了字段code
{
"query":{
"exists":{
"field":"code"
}
}
}

查询文档中字段code值包含Y001651
{
"query":{
"wildcard":{
"code":"*Y001651*"
}
}
}

分页
{
"query":{
"term":{
"isOffShelf":true
}
},
"from":2,
"size":2
}

排序
{
"query":{
"term":{
"isOffShelf":true
}
},
"sort": [
{
"lastModified": "desc"
}
]
}

查询title中必须有毛,绒,球三个字
{
"query":{
"match":{
"title":{
"query":"毛绒球毛毛",
"operator":"and"
}
}
}
}

查询title中只要有毛,绒,球其中一个字
{
"query":{
"match":{
"title":"毛绒球毛毛"
}
}
}

组合查询
{
"query":{
"bool":{
"must":{
"term":{
"isOffShelf":true
}
},
"must":{
"range":{
"weight":{
"gte":0.3,
"lt":0.4
}
}
},
"should":[
{
"terms":{
"editStatus":[3,4,5]
}
},
{
"bool":{
"must":[
{
"term":{
"attributes":1
}
}
]
}
}
]
}
}
}

标签:term,code,06,title,cerebro,查询,命令,query,随记
来源: https://www.cnblogs.com/caihuaxing/p/16350747.html