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

Reply via email to