Re: how to add multiple value for a filter query in Solrj

2020-03-24 Thread Erick Erickson
Your original formation of the filter query has two problems: 1> you included a “+” in the value. My guess is that you misinterpreted the URL you got back from the browser in the admin UI where a “+” is a URL-encoded space. You’ll also see a bunch of %XX in the URL which are other

Re: how to add multiple value for a filter query in Solrj

2020-03-24 Thread Szűcs Roland
inal Message- > From: Szűcs Roland > Sent: Tuesday, March 24, 2020 11:35 AM > To: solr-user@lucene.apache.org > Subject: how to add multiple value for a filter query in Solrj > > Hi All, > > I use Solr 8.4.1 and the latest solrj client. > There is a field let's which c

RE: how to add multiple value for a filter query in Solrj

2020-03-24 Thread Raboah, Avi
how to add multiple value for a filter query in Solrj Hi All, I use Solr 8.4.1 and the latest solrj client. There is a field let's which can have 3 different values. If I use the admin UI, I write to the fq the following: filterName:"value1" filterName:"value2" and it is

how to add multiple value for a filter query in Solrj

2020-03-24 Thread Szűcs Roland
Hi All, I use Solr 8.4.1 and the latest solrj client. There is a field let's which can have 3 different values. If I use the admin UI, I write to the fq the following: filterName:"value1" filterName:"value2" and it is working as expected. If I use solrJ SolrQuery.addFilterQuery method and call it