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

Popular posts from this blog

Javascript line number mapping -

c# - Is it possible to remove an existing registration from Autofac container builder? -

php - Mysql PK and FK char(36) vs int(10) -