search - change precedence in a query, 'AND' or 'OR', without () -
i'm doing search query in lucene searchengine. since i'm doing railo setup i'm having trouble parenthesis bug
so can't query like(which need):
"exact term here"^10 or "less exact term"^5 or ("loose term1" , "loose term2" , "loose term3")
but like:
"exact term here"^10 or "less exact term"^5 or "loose term1" , "loose term2" , "loose term3"
but behave like:
("exact term here"^10 or "less exact term"^5 or "loose term1") , "loose term2" , "loose term3"
is there way around without parenthesis
Comments
Post a Comment