BooleanQuery Too Many Clauses in Lucene
For a bit of background to know what i am doing:
using hit highlighter开发者_Go百科 in lucene
Now to solve this problem i am setting maxclause count to 50000.
it works.
can there be any problems by increasing the number of clauses
If you have too many clauses, performance will suffer, especially if you are running disjunctive (OR) queries. In some rare cases, you might run out of memory.
精彩评论