本文整理匯總了Java中org.apache.lucene.util.Version.LUCENE_46屬性的典型用法代碼示例。如果您正苦於以下問題:Java Version.LUCENE_46屬性的具體用法?Java Version.LUCENE_46怎麽用?Java Version.LUCENE_46使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在類org.apache.lucene.util.Version
的用法示例。
在下文中一共展示了Version.LUCENE_46屬性的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: synTokenQuery
private void synTokenQuery(String search, final int numbOfResults, final double minLuceneScore,
Map<String, Float> result, IndexSearcher searcher) throws ParseException, IOException {
QueryParser parser = new QueryParser(Version.LUCENE_46, "surfaceFormTokens",
new StandardAnalyzer(Version.LUCENE_46));
search = QueryParser.escape(search);
Query q = parser.parse(search);
/*
* Works only in String field!!
*/
// Query q = new FuzzyQuery(new Term("surfaceFormTokens",
// QueryParser.escape(search)), 2);
TopDocs top = searcher.search(q, numbOfResults);
for (ScoreDoc doc : top.scoreDocs) {
if (doc.score >= minLuceneScore) {
final String key = searcher.doc(doc.doc).get("conceptID");
if (result.getOrDefault(key, 0f) < doc.score) {
result.put(key, doc.score);
}
}
}
}
示例2: getNewQueryParser
protected QueryParser getNewQueryParser()
{
return new QueryParser(Version.LUCENE_46,
defaultField, new StandardAnalyzer(
Version.LUCENE_46));
}