You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-user@lucene.apache.org by Chris Hostetter <ho...@fucit.org> on 2013/03/26 20:15:49 UTC

Re: To get Term Offsets of a term per document

:   Is there a way to get Term Offsets of a given term per document without
: enabling the termVectors ?
: 
: Is it that Lucene index stores the positions but not the offsets by default
: - is it correct ?

correct -- unless you specifically enable termVectors, the offset 
information isn't available in the index.

-Hoss