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
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
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