使用python3和高性能全文检索引擎Redisearch进行交互
上一篇介绍了一款高性能全文检索引擎Redisearch,它不仅性能强劲,部署也方便,这里介绍一下如何用python客户端和它进行交互。使用redisearch-python:https://github.com/RediSearch/redisearch-py
首先,安装
pip3 install redisearch
基本操作:
from redisearch import Client, TextField # Creating a client with a given index name client = Client('myIndex',host='localhost',port='6666') # Creating the index definition and schema client.create_index((TextField('title'), TextField('body'))) # Indexing a document client.add_document('doc2', title = '你好', body = '我在北京学习人工智能',language='chinese') # Simple search res = client.search("人工智能") print(res.docs[0].title)
可以看到,基本上和命令行中的操作方式没有太大区别,只是在search时不需要指定语言了,程序可以自主判断。
其实它的官方文档很简单,只是介绍了基本用法,但是你如果阅读了它的源码,发现一些常用操作它也进行了封装,比如
#删除索引 client.drop_index() #获取当前索引的基本信息 client.info() #删除文档 client.delete_document('doc2')
- Next Post关于Python3异步非阻塞Web框架Tornado:真实的异步和虚假的异步
- Previous Post平民版的Elasticsearch?使用Redisearch实现的全文检索功能服务