Re: Dismax query special characters

2017-01-29 Thread Jarosław Grązka
I ended up using simple query parser which probably more fits my requirements. I can use params: q.operators="" and it ignores all lucene special functionalities and take query phrase as it is. But i still think something is wrong with dismax, i use JSON instead of url params so it should not cause

Re: Dismax query special characters

2017-01-29 Thread Ahmet Arslan
Hi, I don't think dismax recognizes AND OR. Special characters for dismax are + - and quotes. In your example, ampersand may causing you trouble. Due to URL encode stuff... Ahmet On Sunday, January 29, 2017 12:17 AM, Jarosław Grązka wrote: Hi, Reading Solr documentation about dismax query

Dismax query special characters

2017-01-28 Thread Jarosław Grązka
Hi, Reading Solr documentation about dismax query https://cwiki.apache.org/confluence/display/solr/The+DisMax+Query+Parser i understood dismax query parser can interpret following special chars: AND,OR,+,-,quotes (for phrases) and should ignore all others like ||,NOT,&&,~,^ etc and treat them as s