gpt4 book ai didi

linux - 在Linux上运行elasticsearch查询

转载 作者:太空宇宙 更新时间:2023-11-04 04:55:49 29 4
gpt4 key购买 nike

在 Linux 上运行 elasticsearch 查询的正确方法是什么?我想出了下面的代码,但由于我看到了很多错误,它似乎不正确。

curl -X GET http://localhost:9200/INDEXED_REPOSITORY/_search?q="constant_score" : {"filter" : { "terms" : { "description" : ["heart", "cancer", and  more than 10000 keywords ]}}}}

最佳答案

你遗漏了一些东西,这样做:

curl -X GET http://localhost:9200/INDEXED_REPOSITORY/_search -d '{
"query": {
"constant_score": {
"filter" : {
"terms" : {
"description" : ["heart", "cancer", and more than 10000 keywords ]
}
}
}
}
}'

or on a single line:

curl -X GET http://localhost:9200/INDEXED_REPOSITORY/_search -d '{"query": {"constant_score": {"filter" : {"terms" : {"description" : ["heart", "cancer", and more than 10000 keywords ]}}}}}'

关于linux - 在Linux上运行elasticsearch查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46438157/

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