Go client for RediSearch based on go-redis
简单易用高性能的 RediSearch 全文索引Go库, 基于 go-redis
轻量简单告别es,
github:https://github.com/RediSearch/RediSearch/
redislabs:http://redisearch.io
Golang RediSearch 库是基于 redigo 的 redisearch-go,
但是更新较慢.好多RediSearch2.0的命令并不支持
新增 自动补全
| 搜索 example | RediSearch | other | 
|---|---|---|
| CreateIndex | FT.CREATE | * | 
| Set | HSET | RS2支持HSET,可直接使用redis方法操作cudr | 
| Search | FT.SEARCH | * | 
| DropIndex | FT.DROPINDEX | FT.DROP 也已经被淘汰,改为 FT.DROPINDEX | 
| 自动补全 example | RediSearch | other | 
|---|---|---|
| AddSuggestions | FT.SUGADD | 见test example | 
| GetSuggestions | FT.SUGGET | |
| DeleteSuggestions | FT.SUGDEL | |
| Length | FT.SUGLEN | 
引用借鉴了redigo , redisearch-go