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
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 frequency terms, e.g. via ConstantScoreQuery as much as you can, but you have to cache them (C