在索引方法中,我使用以下行:
In the indexing method I use the following line:
Field contentsField = new Field("contents", new FileReader(f), Field.TermVector.YES);
但是,在 Lucene 4.0 中,此构造函数已被弃用,应使用 new TextField 代替 new Field.
However, in Lucene 4.0 this constructor is deprecated and new TextField should be used instead of new Field.
但 TextField 的问题在于它的构造函数中不接受 TermVector.
But the problem with TextField is that it don't accept TermVector in its constructors.
有没有办法使用新的构造函数在我的 Lucene 4.0 索引中包含术语向量?
Is there a way to include the Term Vector in my indexing in Lucene 4.0 with the new constructors?
谢谢
TextField 是一个方便的类,适用于需要没有术语向量的索引字段的用户.如果您需要术语向量,只需使用 字段.由于您需要创建 FieldType 首先,将 storeTermVectors 和 tokenizer 设置为 true,然后在 中使用这个 构造函数.FieldType 实例>字段
TextField is a convenience class for users who need indexed fields without term vectors. If you need terms vectors, just use a Field. It takes a few more lines of code since you need to create an instance of FieldType first, set storeTermVectors and tokenizer to true and then use this FieldType instance in Field constructor.
这篇关于如何使用 TermVector Lucene 4.0的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
如何检测 32 位 int 上的整数溢出?How can I detect integer overflow on 32 bits int?(如何检测 32 位 int 上的整数溢出?)
return 语句之前的局部变量,这有关系吗?Local variables before return statements, does it matter?(return 语句之前的局部变量,这有关系吗?)
如何将整数转换为整数?How to convert Integer to int?(如何将整数转换为整数?)
如何在给定范围内创建一个随机打乱数字的 intHow do I create an int array with randomly shuffled numbers in a given range(如何在给定范围内创建一个随机打乱数字的 int 数组)
java的行为不一致==Inconsistent behavior on java#39;s ==(java的行为不一致==)
为什么 Java 能够将 0xff000000 存储为 int?Why is Java able to store 0xff000000 as an int?(为什么 Java 能够将 0xff000000 存储为 int?)