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

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

2020-03-24 Thread Szűcs Roland
Thanks Avi, it worked. Raboah, Avi ezt írta (időpont: 2020. márc. 24., K, 11:08): > You can do something like that if we are talking on the same filter query > name. > > addFilterQuery(String.format("%s:(%s %s)", filterName, value1, value2)); > > > -Original Message- > From: Szűcs

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

2020-03-24 Thread Raboah, Avi
You can do something like that if we are talking on the same filter query name. addFilterQuery(String.format("%s:(%s %s)", filterName, value1, value2)); -Original Message- From: Szűcs Roland Sent: Tuesday, March 24, 2020 11:35 AM To: solr-user@lucene.apache.org Subject: how to add