lucene.query.maxClauses=10000 Max Clauses (Lucene standard parameter) Lucene queries limit the number of clauses in a boolean query to this value. Some queries are expanded into a whole set of boolean query with many clauses under the covers. For example, searching for luc* will expand to a boolean query containing an "OR" for every token the index knows about that matches luc*.
it means that if i am search with luc* then the clauses that lucene for searching will use like luce,lucn,lucu … etc will be limited 10,000. Am i right ?