: 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