我正在创建一个Lucene 4.10.3索引。
我正在使用他的StandardAnalyzer。
String indexpath="C:\\TEMP";
IndexWriterConfig iwc=newIndexWriterConfig(Version.LUCENE_4_10_3,new StandardAnalyzer(CharArraySet.EMPTY_SET));
Directory dir = FSDirectory.open(new File(indexpath));
IndexWriter indexWriter = new IndexWriter(dir, iwc);
iwc.setOpenMode(IndexWriterConfig.OpenMode.CREATE_OR_APPEND);
Document doc = new Document();
doc.add(new TextField("city", "ANDHRA",Store.YES));
doc.add(new TextField("city", "ANDHRA PRADESH",Store.YES));
doc.add(new TextField("city", "ASSAM AND NAGALAND",Store.YES));
doc.add(new TextField("city", "ASSAM",Store.YES));
doc.add(new TextField("city", "PUNJAB",Store.YES));
doc.add(new TextField("city", "PUNJAB AND HARYANA",Store.YES));
indexWriter.addDocument(doc);
当我尝试使用短语查询
搜索lucene索引时例如
try {
QueryBuilder build=new QueryBuilder(new KeywordAnalyzer());
Query q1=build.createPhraseQuery("city","ANDHRA");
Directory dir = FSDirectory.open(new File("C:\\TEMP"));
DirectoryReader indexReader = DirectoryReader.open(dir);
IndexSearcher searcher = new IndexSearcher(indexReader);
ScoreDoc hits[] = searcher.search(q1,10).scoreDocs;
Set<String> set=new HashSet<String>();
set.add("city");
for (int i=0; i < hits.length; i++) {
Document document = indexReader.document(hits[i].doc,set);
System.out.println(document.get("city"));
}
} catch (IOException e) {
e.printStackTrace();
}
我们得到的结果如下 -
ANDHRA
ANDHRA PRADESH
当我搜索“ANDHRA”时如何仅获得“ANDHRA”结果, 不是“ANDHRA PRADESH”,如何使用StandardAnalyzer匹配lucene中的整个字段值
先谢谢
答案 0 :(得分:3)
如果您想匹配字段的确切,未修改和未标记的值,您根本不应该对其进行分析。只需使用StringField
代替TextField
。
如果您想进行某些分析(例如小写或其他类似的分析),但没有进行标记,则可以在Analyzer
实施中使用KeywordTokenizer
。
如果您使用QueryParser
创建查询,请注意解析器如何使用空格来分隔查询子句。您可能会发现有必要编写以下内容的查询:city:ANDHRA\ PRADESH
(我不相信QueryParser.escape
会为您执行此操作)。