gpt4 book ai didi

python - 如何在Python中使用elasticsearch来搜索所有索引?

转载 作者:太空宇宙 更新时间:2023-11-03 21:43:59 24 4
gpt4 key购买 nike

这是我的代码:

def search(term):
s = Search().filter('match_phrase', title=term)
response = s.execute()
return response

查看该函数,标题是我的索引之一的名称。如何更改它,使其不再只搜索一个索引,而是搜索我的所有索引?

最佳答案

您可以通过枚举索引来做到这一点:

def search(term):
s = Search(index=['index1', 'index2']).filter('match_phrase', title=term)
response = s.execute()
return response

或者像这样使用通配符

def search(term):
s = Search(index='index*').filter('match_phrase', title=term)
response = s.execute()
return response

关于python - 如何在Python中使用elasticsearch来搜索所有索引?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52637098/

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