PyLucenePython 语言用来访问 Lucene 索引库的封装。通过 pyLucene 可以用来创建索引和对索引进行搜索。

示例说明:

Java 代码:

for (int i = 0; i < hits.length(); i++) {
     Document doc = hits.doc(i);
     System.out.println(hits.score(i) + " : " + doc.get("title"));
}

而 Python 的代码则是:

for hit in hits:
    hit = Hit.cast_(hit)
    print hit.getScore(), ':', hit.getDocument['title']
PyLucene 6.4.1 发布,Python 的搜索引擎
PyLucene 6.4.1 在2月14日发布了,该版本基于 Lucene 6.4.1。增加对 org.apache.lucene.analysis.Tokenizer:input 的封装,基于 JCC 2.23 构建。PyLucene 是 Python 语言用来访问 Lucene 索引库的封装。通过 PyLucene 可以用来创建索引和对索引进行搜索。PyLucene 使用 JCC 构建。

发布于 2017-03-11 10:54:42 | 83 次阅读


Copyright © 2007-2017 PHPERZ.COM All Rights Reserved   冀ICP备14009818号  版权声明  广告服务