I know its possible to get the top terms within a Lucene Index, but is there a way to get the top terms based on a subset of a Lucene index?
I.e. What are the top terms in the Index for documents within a certain date range?
|
I know its possible to get the top terms within a Lucene Index, but is there a way to get the top terms based on a subset of a Lucene index? I.e. What are the top terms in the Index for documents within a certain date range? |
|||
|
|
|
Ideally there'd be a utility somewhere to do this, but I'm not aware of one. However, it's not too hard to do this "by hand" in a reasonably efficient way. I'll assume that you already have a First, build a list in memory of all of the document IDs in your index subset. You can use Next, initialize an empty HashMap (or whatever) to map terms to total frequency, and populate the map by invoking one of the Once you've built your map, just sort the map items by descending frequency and read off however many top terms you like. If you know in advance how many terms you want, you might prefer to do some kind of fancy heap-based algorithm to find the top k items in linear time instead of using an O(n log n) sort. I imagine the plain old sort will be plenty fast in practice. But it's up to you. If you prefer, you can combine the first two stages by having your |
||||
|
|
|
Counting up the TermVectors will work, but will be slow if there are a lot of documents to iterate. Also note if you mean docFreq by top terms, then don't use the count in the TermFreqVector just count the terms as binary. Alternatively, you could iterate the terms like facet counts. Use a cached filter for every term; their BitSets can be used for a fast intersection count. |
|||
|
|