in solr schema the defaultOperator value is OR but when i use browse(http://localhost:8983/solr/browse)for searching AND is a defaultOperator,how can i change the velocity template engine default operators?
in solr schema the defaultOperator value is OR but when i use browse(http://localhost:8983/solr/browse)for searching
Share
Dismax uses minimum match (
mm) to check the number of terms needed for the document to be matched.The default value of mm is 100% (meaning that all clauses must match).
q.opdoesn’t override themmvalue for the dismax parser.https://issues.apache.org/jira/browse/SOLR-1889
Try mm set to 0% to emulate the OR behavior –