flask——全文检索

Posted 想54256

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了flask——全文检索相关的知识,希望对你有一定的参考价值。

全文检索插件flask-msearch

一、安装

pip3 install flask-msearch

二、修改表结构

from flask_msearch import Search

search = Search()  # 可以使用jieba中文分词
search.init_app(app)

# models.py
class Post(db.Model):
    __tablename__ = ‘post‘
    __searchable__ = [‘title‘, ‘content‘]  # 检索字段

三、添加检索的视图函数

# views.py
@app.route("/search")
def w_search():
    keyword = request.args.get(‘keyword‘)
    results = search.whoosh_search(Post,query=keyword,fields=[‘title‘],limit=20)  # 返回字段+最大返回数量
    return ‘‘

四、创建更新删除索引

# 创建
search.create_index()
# 更新
search.create_index(update=True)
# 删除
search.create_index(delete=True)
# 为执行表添加索引
search.create_index(Model)

五、自定义分词系统

from jieba.analyse import ChineseAnalyzer

search = Search(analyzer=ChineseAnalyzer())

六、配置文件  

WHOOSH_BASE = ‘whoosh_index‘
WHOOSH_ENABLE = True

参考于:这里

 

以上是关于flask——全文检索的主要内容,如果未能解决你的问题,请参考以下文章

检索数据未出现在 ListView 的片段中

python Flask - 数据库片段

从firebase检索图像以在片段中的回收器视图时出错

将片段中的Firebase信息检索到recyclerview中

flask——全文检索

基于whoosh的flask全文搜索插件flask-msearch