Re: Term vector Lucene 4.2

2013-04-02 Thread Adrien Grand
On Tue, Apr 2, 2013 at 12:45 PM, andi rexha wrote: > Hi Adrien, > Thank you very much for the reply. > > I have two other small question about this: > 1) Is "final int freq = docsAndPositions.freq();" the same with > "iterator.totalTermFreq()" ? In my tests it returns the same result and from >

RE: Term vector Lucene 4.2

2013-04-02 Thread andi rexha
u...@gmail.com > Date: Tue, 2 Apr 2013 12:05:12 +0200 > Subject: Re: Term vector Lucene 4.2 > To: java-user@lucene.apache.org > > Hi Andi, > > Here is how you could retrieve positions from your document: > > Terms termVector = indexReader.getTermVector(docId, fieldN

Re: Term vector Lucene 4.2

2013-04-02 Thread Adrien Grand
Hi Andi, Here is how you could retrieve positions from your document: Terms termVector = indexReader.getTermVector(docId, fieldName); TermsEnum reuse = null; TermsEnum iterator = termVector.iterator(reuse); BytesRef ref = null; DocsAndPositionsEnum docsAndPositions = null;

Term vector Lucene 4.2

2013-04-02 Thread andi rexha
Hi, I have a problem while trying to extract term vector's attributes (i.e. position of the terms). What I have done was: Terms termVector = indexReader.getTermVector(docId, fieldName); TermsEnum reuse = null; TermsEnum iterator = termVector.iterator(reuse); PositionIncr