Re: Facets with OR clause

2013-04-24 Thread Kai Becker
Try fq=(groups:group1 OR locations:location1) Am 24.04.2013 um 12:39 schrieb vsl: > Hi, > > my request contains following term: > > The are 3 facets: > groups, locations, categories. > > > > When I select some items then I see such syntax in my request. > fq=groups:group1&fq=locations:locati

Re: Querying only for "+" character causes org.apache.lucene.queryParser.ParseException

2013-04-23 Thread Kai Becker
Hi, you need to escape that char in search terms. Special chars are + - ! ( ) { } [ ] ^ " ~ * ? : \ / at the moment. The %2B is just the url encoding, but it will still be a + for Solr, so just put a \ in front of the chars I mentioned. Cheers, Kai Am 23.04.2013 um 15:41 schrieb Jorge Luis Bet

more results when adding more criterias

2013-04-18 Thread Kai Becker
Hi, I have a field which has data like this: Where can have from 1 to 10 letters strings and can have up to 4 digits. It is defined like this: When the user enters foo, i search for foo directly or something that starts with "foo ". I don't wa