Lucene 单域多条件查询
Posted 皎陽
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Lucene 单域多条件查询相关的知识,希望对你有一定的参考价值。
在Lucene 中 BooleanClause用于表示布尔查询子句关系的类,包括:BooleanClause.Occur.MUST表示and,BooleanClause.Occur.MUST_NOT表示not,BooleanClause.Occur.SHOULD表示or。
下面给出个例子
- **
- * 根据信息分类和关键词进行查询
- * @param type,资源的类型,其值为news或product
- * @param searchKey,搜索的关键字
- * @return Hits
- */
- public Hits executeSearch(String keyword)
- {
- Hits result = null;
- if(keyword != null && !keyword.equals(""))
- {
- try
- {
- //根据关键字构造一个数组
- String[] key = new String[]{keyword,type};
- //同时声明一个与之对应的字段数组
- String[] fields = {"title"};
- //声明BooleanClause.Occur[]数组,它表示多个条件之间的关系
- BooleanClause.Occur[] flags=new BooleanClause.Occur[]{BooleanClause.Occur.MUST,BooleanClause.Occur.MUST};
- ChineseAnalyzer analyzer = new ChineseAnalyzer();
- //用MultiFieldQueryParser得到query对象
- Query query = MultiFieldQueryParser.parse(key, fields, flags, analyzer);
- //c:/index表示我们的索引文件所在的目录
- IndexSearcher searcher = new IndexSearcher("c:/index");
- //查询结果
- result = searcher.search(query);
- } catch (Exception e)
- {
- e.printStackTrace();
- }
- }
- return result;
- }
多条件索引关系
BooleanClause用于表示布尔查询子句关系的类,包括:BooleanClause.Occur.MUST,
BooleanClause.Occur.MUST_NOT,BooleanClause.Occur.SHOULD。有以下6种组合:
1.MUST和MUST:取得连个查询子句的交集。
2.MUST和MUST_NOT:表示查询结果中不能包含MUST_NOT所对应得查询子句的检索结果。
3.MUST_NOT和MUST_NOT:无意义,检索无结果。
4.SHOULD与MUST、SHOULD与MUST_NOT:SHOULD与MUST连用时,无意义,结果为MUST子句的检索
结果。与MUST_NOT连用时,功能同MUST。
5.SHOULD与SHOULD:表示“或”关系,最终检索结果为所有检索子句的并集。
以上是关于Lucene 单域多条件查询的主要内容,如果未能解决你的问题,请参考以下文章
手把手搭建单域多站点企业IT实战环境系列课程之第三季:基于VLMCSD搭建二合一KMS激活服务器