RE: Fastest way to get just the "bits" of matching documents

2008-07-28 Thread Robert Stewart
ser@lucene.apache.org Subject: Re: Fastest way to get just the "bits" of matching documents Op Thursday 24 July 2008 23:00:33 schreef Robert Stewart: > Queries are very complex in our case, some have up to 100 or more > clauses (over several fields), including disjunctions and pro

Re: Fastest way to get just the "bits" of matching documents

2008-07-26 Thread Paul Elschot
Op Thursday 24 July 2008 23:00:33 schreef Robert Stewart: > Queries are very complex in our case, some have up to 100 or more > clauses (over several fields), including disjunctions and prohibited > clauses. Other than the earlier advice, did you try setAllowDocsOutOfOrder() ? Regards, Paul Elsc

RE: Fastest way to get just the "bits" of matching documents

2008-07-24 Thread Robert Stewart
ubject: Re: Fastest way to get just the "bits" of matching documents no, at the moment you can not make pure boolean queries. But 1.5 seconds on 10Mio document sounds a bit too much (we have well under 200mS on 150Mio collection) what you can do: 1. use Filter for high frequ

Re: Fastest way to get just the "bits" of matching documents

2008-07-22 Thread eks dev
: Tuesday, 22 July, 2008 9:37:26 PM > Subject: Fastest way to get just the "bits" of matching documents > > I need to execute a boolean query and get back just the bits of all the > matching > documents. I do additional filtering (date ranges and entitlements) a

Fastest way to get just the "bits" of matching documents

2008-07-22 Thread Robert Stewart
I need to execute a boolean query and get back just the bits of all the matching documents. I do additional filtering (date ranges and entitlements) and then do my own sorting later on. I know that using QueryFilter.Bits() will still compute scores for all matching documents. I do not want to