Robert Muir created LUCENE-4178:
-----------------------------------
Summary: FieldType.setTokenized shoudl be true by default
Key: LUCENE-4178
URL: https://issues.apache.org/jira/browse/LUCENE-4178
Project: Lucene - Java
Issue Type: Bug
Affects Versions: 4.0
Reporter: Robert Muir
This is really confusing, see LUCENE-4176 where a user hit this.
The example code from the user there reads:
{code}
FieldType fieldType = new FieldType();
fieldType.setIndexed(true);
fieldType.setStored(true);
{code}
Its really trappy that this does not invoke the analyzer: because historically
we did this unless you specified NOT_ANALYZED.
So i think fieldType.setTokenized(true) should be the default: things like
StringField can turn it off.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]