It's there: http://lucene.apache.org/java/3_0_2/api/core/org/apache/lucene/search/Query. html#extractTerms(java.util.Set)
----- Uwe Schindler H.-H.-Meier-Allee 63, D-28213 Bremen http://www.thetaphi.de eMail: u...@thetaphi.de > -----Original Message----- > From: starz10de [mailto:farag_ah...@yahoo.com] > Sent: Friday, November 05, 2010 8:28 AM > To: java-user@lucene.apache.org > Subject: Re: High frequency term for the searched query > > > HI Chris, > > I tried your solution and got one problem "the method > extractterms(Set<Term>) is undefined for the type Query" > > > this is the ocde: > > Query query = QueryParser.parse(line, "contents", analyzer); > //System.out.println("Searching for: " + query.toString("contents")); > > Hits hits = searcher.search(query); > > final Set<Term> terms = new HashSet<Term>(); > > query = searcher.rewrite(query); > > // the problem in this line > query.extractTerms(terms); > > for(Term t : terms){ > int frequency = searcher.docFreq(t); > } > > Thanks in advance > > -- > View this message in context: http://lucene.472066.n3.nabble.com/High- > frequency-term-for-the-searched-query-tp1839942p1846781.html > Sent from the Lucene - Java Users mailing list archive at Nabble.com. > > --------------------------------------------------------------------- > To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org > For additional commands, e-mail: java-user-h...@lucene.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org For additional commands, e-mail: java-user-h...@lucene.apache.org