Currently I query ES for a single key value pair like this:
String query_key = "abc"; String query_val = "def"; searchRequestBuilder.setQuery(QueryBuilders.matchQuery(query_key, query_val)).execute().actionGet(); Now, instead of single key-value pair, I have the following key-value pair map: Map<String,String> query_list How do I modify the same for this? -- You received this message because you are subscribed to the Google Groups "elasticsearch" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/elasticsearch/f35f1751-48cf-4958-b83b-613b951bc468%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
