gpt4 book ai didi

database - 先有符合条件的结果

转载 作者:行者123 更新时间:2023-12-03 00:17:38 25 4
gpt4 key购买 nike

给出一个非常简单的文档:

`concert_name` - String containing the name of the concert 
`city` - City ID of the concert
`band` - Band ID
`relevance` - An integer that indicate how important the concert is

我想在一个特定的城市举办所有音乐会,但我首先要针对某个特定乐队的音乐会(按相关性排序),而所有其他音乐会按相关性排序

所以我可以像这样查询

Give me all concerts in Milan and return first those for Pearl Jam



我该如何在Elastica 1.X中做到这一点?

最佳答案

编辑1

我认为可以在多个字段上使用sorting并使用script来完成。您将不得不enable dynamic scripting。我为要匹配的频段分配了10的值,其他人则分配了0的值。尝试这样的操作

{
"query": {
"match": {
"city": "milan"
}
},
"sort": [
{
"_script": {
"script": "if(doc['band'].value == 'pearl') {10} else {0}",
"type": "number",
"order": "desc"
}
},
{
"relevance": {
"order": "desc"
}
}
]
}

我认为更高的数字意味着更重要的音乐会。我已经在 ES 1.7上测试过

这有帮助吗?

关于database - 先有符合条件的结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34862685/

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