Hi, I want to get the term frequency of a given term t in a given document with lucene docid say d. Formally, I need a function say f() that takes two arguments: 1. lucene-docid d, 2. term t, and returns the number of time t occurs in d.
I know of one solution, that is, traversing the whole document using TermsEnum iterator, but it is taking a lot of time. I want a solution that works fast. Dwaipayan.