I am searching in lucene with a "equals" operator implemented like:
return new TermQuery(new Term(getName(), getValue()));
For a bit of background to know what i am doing: http://stackoverflow.com/questions/2409870/using-hit-highlighter-in-lucene Now to solve this problem i am setting maxclause count to 50000. it works. can there be any problems by increasing the ...
I'm using a BooleanQuery to combine several queries. I find that if I add a BooleanQuery to the BooleanQuery, then no result is returned. The added BooleanQuery is a MUST_NOT one, ...