gpt4 book ai didi

java - IndexReader.getFieldNames Lucene 4

转载 作者:行者123 更新时间:2023-12-01 14:37:56 24 4
gpt4 key购买 nike

我们正在从 Lucene 3.3.0 升级到 Lucene 4.2.1,但我似乎找不到旧 IndexReader.getFieldNames 方法的替代方法。谷歌搜索显示this ticket其中谈到了一个新的 IndexReader.getFieldInfos 方法,但那是实验性的,似乎不再存在 - 线索很冷。

如何在 Lucene 4 中复制 IndexReader.getFieldNames 的行为?

最佳答案

您可以获得FieldInfosAtomicReader.getFieldInfos() .
大致如下:

for (FieldInfo info : atomicReader.getFieldInfos().iterator()) {
String name = info.name;
//Whatever you need to do with the name.
}

看看Migration Guide有关更多信息,有一个关于 IndexReader -> AtomicReader 的部分。如果您还不熟悉该更改,您可能会发现它是有用的信息。

关于java - IndexReader.getFieldNames Lucene 4,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16304891/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com