Hi everyone,

In this code sample that's part of my overall code, how do I tell Solr
dynamically / programmatically to use AND or OR as the default operator?

SolrQuery query = new SolrQuery(queryString);
query.setRequestHandler("/select_test");

response = solrClient.query(query);
SolrDocumentList documents = response.getResults();
long count = documents.getNumFound();

Thanks

Steven

Reply via email to