Are the terms stopwords?

 
Otis
--
Sematext -- http://sematext.com/ -- Lucene - Solr - Nutch



----- Original Message ----
> From: Cam Bazz <[EMAIL PROTECTED]>
> To: java-user@lucene.apache.org
> Sent: Tuesday, September 16, 2008 1:33:48 AM
> Subject: Phrase Query
> 
> Hello,
> 
> Lets say I have two documents, both containing field F.
> 
> document 0 has the string "a b" as F
> document 1 has the string "b a" as F
> 
> I am trying to make a phrasequery like:
> 
>         PhraseQuery pq = new PhraseQuery();
>         pq.add(new Term("F", "a"));
>         pq.add(new Term("F", "b"));
>         pq.setSlop(2);
> 
> and then search. however I was not successful finding anything.
> 
> any ideas?
> 
> Best Regards,
> -C.B.
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to