gpt4 book ai didi

search - 如何使用ElasticSearch和CURL请求在多个字段中搜索?

转载 作者:行者123 更新时间:2023-12-02 23:34:39 24 4
gpt4 key购买 nike

如何使用curl -X GET请求在多个字段上执行ElasticSearch搜索?

这是我尝试过的示例:

 curl -XGET "http://localhost:9200/foo/_count?pretty=true&q=user:foo AND posts:bar"

也:
curl -XGET 'http://localhost:9200/foo/_count?q=\"user:foo AND posts:bar\"&pretty=true'

问题是,我似乎只得到以下响应:
curl: (52) Empty reply from server

有什么提示吗?

谢谢。

最佳答案

URI中的参数必须为urlencoded,并且不应包含转义的双引号。

例如,OP中的查询应为:
curl -XGET 'http://localhost:9200/foo/_count?q=user%3Afoo%20AND%20posts%3Abar&pretty=true

关于search - 如何使用ElasticSearch和CURL请求在多个字段中搜索?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32588725/

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