Re: To get the term-freq

2017-11-20 Thread Michael McCandless
You could use the PostingsEnum API, advance to your document, then call freq()? I believe there is also a function query based on the term doc freq. Mike McCandless http://blog.mikemccandless.com On Fri, Nov 17, 2017 at 11:37 AM, Ahmet Arslan wrote: > Hi, > > I am also intersted into the answ

Re: To get the term-freq

2017-11-17 Thread Ahmet Arslan
Hi, I am also intersted into the answer to this question.  I wonder whether term freq. function query would work here. Ahmet On Friday, November 17, 2017, 10:32:23 AM GMT+3, Dwaipayan Roy wrote: ​Hi, I want to get the term frequency of a given term t in a given document with lucene

To get the term-freq

2017-11-16 Thread Dwaipayan Roy
​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 docu