gpt4 book ai didi

lucene - Elasticsearch 过滤结果按 id 排除

转载 作者:行者123 更新时间:2023-11-29 02:48:57 24 4
gpt4 key购买 nike

我需要返回不包含具有特定 ID 的文档的结果。 Elasticsearch 允许我们指定允许哪些 ID,但我看不出有什么办法可以禁止某些 ID。在我的例子中,我不想返回用户已经看到的东西,所以每个用户的列表都会不同。

最佳答案

您可以通过添加一个 bool/must_not 过滤器来实现这一点,该过滤器包含一个 ids 过滤器,其中包含您不希望出现的 ID 数组,如下所示:

{
"query": {
"bool": {
"must": [
... <--- your other filters go here
],
"must_not": [
{
"ids": {
"values": [
"id1", "id2" <--- add all the ids you DON'T want in here
]
}
}
]
}
}
}

关于lucene - Elasticsearch 过滤结果按 id 排除,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32660420/

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