whoosh的官方介紹:http://whoosh.readthedocs.io/en/latest/quickstart.html
成都創(chuàng)新互聯(lián)公司是一家專注于做網(wǎng)站、成都網(wǎng)站設(shè)計與策劃設(shè)計,廈門網(wǎng)站建設(shè)哪家好?成都創(chuàng)新互聯(lián)公司做網(wǎng)站,專注于網(wǎng)站建設(shè)十多年,網(wǎng)設(shè)計領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:廈門等地區(qū)。廈門做網(wǎng)站價格咨詢:18982081108因為做的是中文的全文檢索需要導(dǎo)入jieba工具包以及whoosh工具包
直接上代碼吧
from whoosh.qparser import QueryParser from whoosh.index import create_in from whoosh.index import open_dir from whoosh.fields import * from jieba.analyse import ChineseAnalyzer from get_comment import SQL from whoosh.sorting import FieldFacet analyser = ChineseAnalyzer() #導(dǎo)入中文分詞工具 schema = Schema(phone_name=TEXT(stored=True, analyzer=analyser), price=NUMERIC(stored=True), phoneid=ID(stored=True))# 創(chuàng)建索引結(jié)構(gòu) ix = create_in("path", schema=schema, indexname='indexname') #path 為索引創(chuàng)建的地址,indexname為索引名稱 writer = ix.writer() writer.add_document(phone_name='name',price ="price",phoneid ="id") # 此處為添加的內(nèi)容 print("建立完成一個索引") writer.commit() # 以上為建立索引的過程 new_list = [] index = open_dir("indexpath", indexname='comment') #讀取建立好的索引 with index.searcher() as searcher: parser = QueryParser("要搜索的項目,比如“phone_name", index.schema) myquery = parser.parse("搜索的關(guān)鍵字") facet = FieldFacet("price", reverse=True) #按序排列搜索結(jié)果 results = searcher.search(myquery, limit=None, sortedby=facet) #limit為搜索結(jié)果的限制,默認(rèn)為10,詳見博客開頭的官方文檔 for result1 in results: print(dict(result1)) new_list.append(dict(result1))
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。