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);
-------
Could someone please help
Rahman.
