Thanks for the response Mike and pointing me in the right direction.
I see that
TextField is indexed, tokenized, without term vectors
StringField is indexed, but not tokenized
If I wanted a stored field that is tokenized with stored term vectors would
this be the recommended approach?
FieldType customFieldType = new FieldType();
customFieldType.setStored(true);
customFieldType.setIndexed(true);
customFieldType.setTokenized(true);
customFieldType.setStoreTermVectors(true);
doc.add("contents", customFieldType);
Cheers,
Jeff
--
View this message in context:
http://lucene.472066.n3.nabble.com/Field-Index-deprecation-tp4050068p4050738.html
Sent from the Lucene - Java Users mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]