RE: BooleanQuery.TooManyClauses exception

2006-10-17 Thread Steven Parkes
-Original Message- From: Bushey, John [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 17, 2006 10:57 AM To: java-user@lucene.apache.org Subject: RE: BooleanQuery.TooManyClauses exception Thanks. That's the explanation that I was looking for. The WIKI does not cover this in much detail

Re: BooleanQuery.TooManyClauses exception

2006-10-17 Thread Erick Erickson
ctober 17, 2006 12:13 PM To: java-user@lucene.apache.org Subject: RE: BooleanQuery.TooManyClauses exception Lucene takes your date range, enumerates all the unique date/time values in your corpus within that range, and then executes that query. So the number of terms in your query is going to

Re: BooleanQuery.TooManyClauses exception

2006-10-17 Thread Peter W .
Another solution is work with plain java dates and calendar objects, convert into Lucene strings using DateTools (resolution day) then query this field with two RangeFilters using ChainedFilter. You will never get the BooleanQuery error. Peter On Oct 17, 2006, at 10:57 AM, Bushey, John wrote

RE: BooleanQuery.TooManyClauses exception

2006-10-17 Thread Bushey, John
EMAIL PROTECTED] Sent: Tuesday, October 17, 2006 12:13 PM To: java-user@lucene.apache.org Subject: RE: BooleanQuery.TooManyClauses exception Lucene takes your date range, enumerates all the unique date/time values in your corpus within that range, and then executes that query. So the number of ter

RE: BooleanQuery.TooManyClauses exception

2006-10-17 Thread Doron Cohen
the higher precision value in a stored but unindexed > field if you want to retrieve it via the query results. > > -Original Message- > From: Bushey, John [mailto:[EMAIL PROTECTED] > Sent: Monday, October 16, 2006 10:44 AM > To: java-user@lucene.apache.org > Subject: Bool

RE: BooleanQuery.TooManyClauses exception

2006-10-17 Thread Steven Parkes
unindexed field if you want to retrieve it via the query results. -Original Message- From: Bushey, John [mailto:[EMAIL PROTECTED] Sent: Monday, October 16, 2006 10:44 AM To: java-user@lucene.apache.org Subject: BooleanQuery.TooManyClauses exception Hi - Can someone explain the reason why I

Re: BooleanQuery.TooManyClauses exception

2006-10-16 Thread Chris Hostetter
From: "Bushey, John" <[EMAIL PROTECTED]> : Reply-To: java-user@lucene.apache.org : To: java-user@lucene.apache.org : Subject: BooleanQuery.TooManyClauses exception : : Hi - Can someone explain the reason why I'm getting the TooManyClauses : exception? I have a general understandin

BooleanQuery.TooManyClauses exception

2006-10-16 Thread Bushey, John
Hi - Can someone explain the reason why I'm getting the TooManyClauses exception? I have a general understanding of the issue based on my reading, but I don't understand the mechanics of the it. Specifically how is my query being expanded to cause this problem? How am I exceeding the default 102