简体   繁体   中英

How to get top words by lucene index and search?

I used lucene library to create index and search. But now I want to get top 30 words are most of the words appearing in my texts. What can I do?

If you are using Lucene 4.0 or later, you can use the HighFreqTerms class, such as:

TermStats[] commonTerms = HighFreqTerms.getHighFreqTerms(reader, 30, "mytextfield");
for (TermStats commonTerm : commonTerms) {
    System.out.println(commonTerm.termtext.utf8ToString()); //Or whatever you need to do with it
}

From each TermStats object, you can get the frequencies, field name, and text.

A quick search in SO got me this: Get highest frequency terms from Lucene index

Would this work for you? sounded like the exact same question..

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM