Bleve 是一个由 Couchbase 团队基于Go语言开发的索引/索引库,它支持常用的检索和索引功能,如索引、检索、过滤、排序、聚合、高亮等。Bleve包括常见的文本分析组件,且能够使用现有的K/V存储系统进行存储。Bleve具有以下主要特性:
索引和检索示例如下:
message := struct{ Id string From string Body string }{ Id: "example", From: "marty.schoch@gmail.com", Body: "bleve indexing is easy", } mapping := bleve.NewIndexMapping() index, err := bleve.New("example.bleve", mapping) if err != nil { panic(err) } index.Index(message.Id, message)
> index, _ := bleve.Open("example.bleve") > query := bleve.NewQueryStringQuery("bleve") > searchRequest := bleve.NewSearchRequest(query) > searchResult, _ := index.Search(searchRequest)
Bleve基于 Apache License Version 2.0 协议开源,其代码托管在 GitHub 。为了减少项目依赖、简化编译与部署,于是,Couchbase团队抛弃了Java环境下的Lucene方案(如Lucene、Elasticsearch、Solr等),并构建了Bleve。它为开发者提供了一个Go语言环境下的全文检索新方案。读者可以通过官方提供的Bleve Wiki内容 在线检索实例 以体验Bleve的检索功能效果。更多关于Bleve的内容,请读者查看GitHub提供的 Wiki页面 或其官网。
感谢徐川对本文的审校。
给InfoQ中文站投稿或者参与内容翻译工作,请邮件至editors@cn.infoq.com。也欢迎大家通过新浪微博(@InfoQ,@丁晓昀),微信(InfoQ)关注我们,并与我们的编辑和其他读者朋友交流。