知识分享之Golang——Bleve全文检索库
背景
知识分享系列是我在日常进行技术研究时学习到的一些东西的记录,分享出来给大家,便于日常使用的时候快速查寻想要的内容。
开发环境
- 系统:windows10
- 语言:Golang
- 组件库:Bleve
- 组件官网:http://blevesearch.com/
- 组件仓库:https://github.com/blevesearch/bleve
- 开源协议:Apache-2.0 License
内容
本文分享的内容是Golang语言下的组件库,Bleve全文检索库
Bleve是一款基于Golang实现的全文搜索与索引组件库,具有简单的API、丰富的接口扩展能力、映射可自定义、全面的索引数据类型等特点。
官方使用案例:
import "github.com/blevesearch/bleve/v2"
func main() {
// open a new index
mapping := bleve.NewIndexMapping()
index, err := bleve.New("example.bleve", mapping)
// index some data
err = index.Index(identifier, your_data)
// search for some text
query := bleve.NewMatchQuery("text")
search := bleve.NewSearchRequest(query)
searchResults, err := index.Search(search)
}
通过使用 Bleve 索引数据,您可以获得编写以下查询类型的能力:
- 术语、短语、匹配、匹配短语、前缀
- 合取、析取、布尔
- 数字和日期范围
- 查询字符串
持在搜索结果中聚合方面信息。支持的构面类型:
术语方面
数字范围方面
日期范围方面
本文声明:
88x31.png知识共享许可协议
本作品由 cn華少 采用 知识共享署名-非商业性使用 4.0 国际许可协议 进行许可。
网友评论