我正在尝试了解 Lucene 提供的不同字段选项,据我所知,Lucene 将提供以下字段选项
TextField.TYPE_STORED - Analyzed & stored
TextField.TYPE_NOT_STORED - Analyzed & Not stored
StringField.TYPE_STORED - Not Analyzed & stored
StringField.TYPE_NOT_STORED - NOT Analyzed & NOT stored
StringField.TYPE_NOT_STORED
-- 字段将无法进行搜索也检索到内容。将这些类型的字段添加到我的 Lucene 文档有什么用?