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

mod rewrite - Doing external redirect. .htaccess NS flag not working. How to achieve similar results? -

mysql - How to insert just year and month into date field? -