> Hi all, I would like to add a PhraseQuery to a PhraseQuery so that
> I can be
> able to allow slop between phrases and terms. Something like:
>
> ----
> PhraseQuery mainPQ = new PhraseQuery();
> PhraseQuery subPQ   = new PhraseQuery();
>
> subPQ.add(new Term("contents","great"));
> subPQ.add(new Term("contents","actor"));
>
> mainPQ.add(subPQ);
> mainPQ.add(new Term("contents","Jean"));
> mainPQ.setSlop(20);

You'll need to use SpanNearQuery instead.

        Erik


Thanks for the tip Erik, but I cant figure out how to write the query. Could
you possibly give me an example for the above problem.

Reply via email to