2

我的想法是实现类似于 MySQL MATCH / AGAINST 关键字的执行。

你知道一个计算文本搜索相关性分数的 python 库吗?

如果答案不令人满意,我将使用 Python 连接器连接 MySQL。

4

1 回答 1

1

看看 PyLucene http://lucene.apache.org/pylucene/

import os, sys, unittest, lucene
lucene.initVM()

baseDir = os.path.dirname(os.path.abspath(sys.argv[0]))
sys.path.append(baseDir)

import lia.searching.ScoreTest
from lucene import System

System.setProperty("index.dir", os.path.join(baseDir, 'index'))
unittest.main(lia.searching.ScoreTest)

您可以在http://svn.apache.org/viewvc/lucene/pylucene/trunk/samples/LuceneInAction/找到更多示例和 lia

于 2010-08-02T22:37:15.867 回答