URI ベースのクエリで AND 演算を指定するにはどうすればよいですか? 私は次のようなものを探しています:
http://localhost:9200/_search?q="profiletype:student AND username:s*"
URI ベースのクエリで AND 演算を指定するにはどうすればよいですか? 私は次のようなものを探しています:
http://localhost:9200/_search?q="profiletype:student AND username:s*"
ドキュメントによると、説明どおりに動作するはずです。http://www.elasticsearch.org/guide/reference/query-dsl/query-string-query.htmlを参照してください
とはいえ、次のものも使用できます。
http://localhost:9200/_search?q="+profiletype:student +username:s*"
ElasticSearchでのURI 検索の場合、言うように AND 演算子のいずれかを使用できますprofiletype:student AND username:s
が、引用符は使用できません。
_search?q=profiletype:student AND username:s*
デフォルトの演算子を次のように設定することもできますAND
_search?q=profiletype:student username:s*&default_operator=AND
または、存在しなければならない用語 に+
演算子+profiletype:student +username:s
を使用できます。つまり、クエリ文字列として使用できます。ただし、これは URL エンコーディングがないと機能しません。URL エンコーディング+
は%2B
であり、スペースは%20
であるため、代替手段は次のようになります。
_search?q=%2Bprofiletype:student%20%2Busername:s*
以下の行を試すことができます。
http://localhost:9200/_search?q=profiletype:student%20AND%20username:s*
http://localhost:9200/_search?q=profiletype:student AND username:s*
デフォルトの演算子と + 記号を組み合わせて機能させる必要がありました
curl -XGET 'localhost:9200/apm/inventory/_search?default_operator=AND&q=tenant_id:t2+_all:node_1'