Re: Combination of BooleanQuery and PhraseQuery

2016-08-15 Thread Erik Hatcher
Try combining into multiple clauses… (with q.op=OR) “some phrase”~ OR (some phrase) That would boost docs with with proximity, but still allow matches for docs that don’t contain all terms. Erik > On Aug 15, 2016, at 4:02 AM, Erel Uziel wrote: > > Hi, > Is there any query

Combination of BooleanQuery and PhraseQuery

2016-08-15 Thread Erel Uziel
Hi, Is there any query similar to BooleanQuery with SHOULD semantics that prefer documents where the terms are close to each other? I currently use a PhraseQuery with large slop for this. However this only works if all the terms are in the document. Best regards, Erel Uziel