lucene-PrefixQuery通过字符串进行搜索
程序员文章站
2022-05-15 16:04:51
...
搜索以指定字符串开头的项的文档。
当查询表达式中的短语以"*"结尾时,QueryParser的parse函数会为查询表达式项创建一个PrefixQuery对象。
//查找编程方面的书,包括它的子类书
IndexSearcher searcher=new IndexSearcher(directory);
Term term=newTerm("category","/technology/computers/programming");
PrefixQuery query=new PrefixQuery(term);
Hits hits=searcher.search(query);
//只搜索编程方面的书,不包括子类
Hits hits=searcher.search(new TermQuery(term));