Re: Problem with PhraseQuery

2010-01-05 Thread Simon Willnauer
Hi Andre, you are using StandardAnalyzer for indexing but you search with an un-analyzed string "Lucene" (q.add(new Term("title","Lucene"));) If you pass this string to the query parser your query string will be analyzed (will most likely result in a lowercased string). The analyzed query will the

Problem with PhraseQuery

2010-01-05 Thread Mário André
Hi, I need search by phrase containing a particular sequence of terms , then I am using Java Lucene 3.0, more specifically the PhraseQuery. I'm using the code below, but does not work(PhraseQuery). Only does work when I use the QueryParser: Is there some problem or how can I use the PhraseQuery in