gpt4 book ai didi

java - Lucene 搜索匹配短语中的任何单词

转载 作者:太空宇宙 更新时间:2023-11-04 09:24:12 25 4
gpt4 key购买 nike

我想搜索包含很多单词的字符串,并检索与其中任何单词匹配的文档。我的索引方法如下:

 Document document = new Document();
document.add(new TextField("termos", text, Field.Store.YES));
document.add(new TextField("docNumber",fileNumber,Field.Store.YES));

config = new IndexWriterConfig(analyzer);
Analyzer analyzer = CustomAnalyzer.builder()
.withTokenizer("standard")
.addTokenFilter("lowercase")
.addTokenFilter("stop")
.addTokenFilter("porterstem")
.addTokenFilter("capitalization")
.build();
config = IndexWriterConfig(analyzer);
writer = new IndexWriter(indexDirectory, config);
writer.addDocument(document);
writer.commit();

这是我的搜索方法。我不想寻找特定的短语,而是其中的任何单词。搜索分析器与索引分析器相同。

Query query = new QueryBuilder(analyzer).createPhraseQuery("termos","THE_PHRASE");
String indexDir = rootProjectFolder + "/indexDir/";
IndexReader reader = DirectoryReader.open(indexDir);
IndexSearcher searcher = new IndexSearcher(reader);
TopScoreDocCollector collector = TopScoreDocCollector.create(1000,1000);
searcher.search(query,collector);

我是 Lucene 的新手。有人可以帮助我吗?

最佳答案

使用 createPhraseQuery("termos", "list of Words") 将精确地尝试将短语“list of Words”与短语斜率为 0 进行匹配。

如果您想匹配单词列表中的任何术语,您可以使用 createBooleanQuery :

new QueryBuilder(analyzer).createBooleanQuery("termos", terms, BooleanClause.Occur.SHOULD);

作为替代方案,您还可以使用 createMinShouldMatchQuery()这样您就可以需要匹配查询词数量的一小部分,例如。匹配至少 10% 的术语:

new QueryBuilder(analyzer).createMinShouldMatchQuery("termos", terms, 0.1f));

关于java - Lucene 搜索匹配短语中的任何单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57931186/

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