如何从 Lucene 索引字符串字段中搜索单词?
我有字段TITLE的 lucene 索引,包含文档标题
例如:电视不工作,手机不工作
我想从标题中搜索特定的单词。
下面的代码给出了完整内容的结果,如果我将 FULL_CONTENET 更改为 TITLE,那么我不会得到任何结果。
Query qry = null;
qry = new QueryParser(FULL_CONTENT, new SimpleAnalyzer()).parse("not");
Searcher searcher = null;
searcher = new IndexSearcher(indexDirectory);
Hits hits = null;
hits = searcher.search(qry);
System.out.println(hits.length());