gpt4 book ai didi

elasticsearch - ElasticSearch (NEST) 中的多项过滤器

转载 作者:行者123 更新时间:2023-11-29 02:55:04 25 4
gpt4 key购买 nike

我正在尝试根据具有多个可能值的给定字段查询文档。例如,我的文档有一个“扩展”属性,它是文件的扩展类型,如 .docxxls.pdf 等. 我希望能够根据任意数量的值过滤我的“扩展”属性,但找不到获得此功能所需的正确语法。这是我当前的查询:

desc.Type("entity")
.Routing(serviceId)
.From(pageSize * pageOffset)
.Size(pageSize)
.Query(q => q
.Filtered(f => f
.Query(qq =>
qq.MultiMatch(m => m
.Query(query)
.OnFields(_searchFields)) ||
qq.Prefix(p1 => p1
.OnField("entityName")
.Value(query)) ||
qq.Prefix(p2 => p2
.OnField("friendlyUrl")
.Value(query))
)
.Filter(ff =>
ff.Term("serviceId", serviceId) &&
ff.Term("subscriptionId", subscriptionId) &&
ff.Term("subscriptionType", subscriptionType) &&
ff.Term("entityType", entityType)
)
)
);

附言反过来想可能更容易,我发送我想要的文件扩展名并设置查询以获取的文档具有任何给定的扩展值。

最佳答案

经过讨论,这应该是一个原始的 json 查询,它应该可以工作并且可以很容易地转换为 NEST:

POST /test/_search
{
"query": {
"filtered": {
"query": {
"match_all": {}
},
"filter": {
"bool": {
"must": [
{
"term": {
"serviceId": "VALUE"
}
},
{
"term": {
"subscriptionId": "VALUE"
}
},
{
"term": {
"subscriptionType": "VALUE"
}
},
{
"term": {
"entityType": "VALUE"
}
}
],
"must_not": [
{
"terms": {
"extension": [
"docx",
"doc"
]
}
}
]
}
}
}
}
}

必须要做的事情:

为了获得必须存在的子句和需要过滤掉的子句,bool 查询最适合。

  • 必须查询存储 OP 查询中存在的所有子句
  • Must_not 查询应该存储所有需要过滤掉的扩展

关于elasticsearch - ElasticSearch (NEST) 中的多项过滤器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32976143/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com