문제

I have two queries about edismax parser --->

1.Does edismax parser support && || for AND and OR operators ? 2.Also Does is support 'not' for NOT operator like and/or for AND/OR ?

If edismax parser don't support this, how can I extend this parser and add this functionality ?

Thanks in advance. Devendra

도움이 되었습니까?

해결책

Check the JIRA SOLR-1553 for the Edismax Parser.
It does support the boolean operators check Documentation

supports queries such as AND, OR, NOT, -, and +.
treats "and" and "or" as "AND" and "OR" in Lucene syntax mode.

Also for AND the operator is +, NOT with a - and OR does not need an operator.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top