Is there a fast and easy way of getting term frequencies from a Lucene index, without doing it through the TermVectorFrequencies
class, since that takes an awful lot of time for large collections?
What I mean is, is there something like TermEnum
which has not just the document frequency but term frequency as well?
UPDATE: Using TermDocs is way too slow.