一尘不染

使用AND运算符的基于Elasticsearch URI的查询

elasticsearch

如何在基于URI的查询中指定AND操作?我正在寻找类似的东西:

http://localhost:9200/_search?q="profiletype:student AND username:s*"

阅读 274

收藏
2020-06-22

共1个答案

一尘不染

根据文档,它应该按您描述的那样工作。参见http://www.elasticsearch.org/guide/reference/query-
dsl/query-string-
query.html

也就是说,您还可以使用以下内容:

http://localhost:9200/_search?q="+profiletype:student +username:s*"
2020-06-22