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
Also for
AND
the operator is+
,NOT
with a-
andOR
does not need an operator.