Re: Finding docs which contain at least x of the queryterms

2005-05-25 Thread Paul Elschot
On Wednesday 25 May 2005 13:00, Barbara Krausz wrote: > > > > Hi, > > Consider a Query with e.g. 4 terms (t1,t2,t3,t4). I want to retrieve all > documents which contain at least e.g. 3 of the queryterms. How can I > implement this? > The first idea is to use BooleanQueries such as > (t1 and t2

Re: Finding docs which contain at least x of the queryterms

2005-05-25 Thread Erik Hatcher
On May 25, 2005, at 7:00 AM, Barbara Krausz wrote: Hi, Consider a Query with e.g. 4 terms (t1,t2,t3,t4). I want to retrieve all documents which contain at least e.g. 3 of the queryterms. How can I implement this? The first idea is to use BooleanQueries such as (t1 and t2 and t3 and t4) or