BooleanQuery$TooManyClauses

2006-04-19 Thread Flávio Marim
Hi there. I am a new Lucene user and I have been searching the group archives but couldn't solve the problem. I have just joined a project that uses Lucene. We get an error when we issue some of our wildcard text searches. We use the StandardAnalyzer for indexing our documents and our query is a

Re: BooleanQuery$TooManyClauses

2006-04-24 Thread Flávio Marim
is 1024, may be your > query produce more query than 1024, one work around is that you set the > BooleanCluase count to more than 1024. You can do that by just invoking > the static method > BooleanQuery.setMaxClauseCount(2048); > > supriya > > Flávio Marim wrote: >> Hi