2
我的想法是實現類似於MySQL MATCH/AGAINST關鍵字的執行。Python - 爲文本搜索計算相關性分數的庫
你知道一個計算文本搜索相關性分數的python庫嗎?
如果不是令人滿意的答案,我將使用Python連接器到MySQL。
我的想法是實現類似於MySQL MATCH/AGAINST關鍵字的執行。Python - 爲文本搜索計算相關性分數的庫
你知道一個計算文本搜索相關性分數的python庫嗎?
如果不是令人滿意的答案,我將使用Python連接器到MySQL。
看一看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)
你可以找到更多的例子和LIA在http://svn.apache.org/viewvc/lucene/pylucene/trunk/samples/LuceneInAction/