在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):blevesearch/bleve开源软件地址(OpenSource Url):https://github.com/blevesearch/bleve开源编程语言(OpenSource Language):Go 99.8%开源软件介绍(OpenSource Introduction):blevemodern text indexing in go - blevesearch.com Features
DiscussionDiscuss usage and development of bleve in the google group. Indexingmessage := struct{
Id string
From string
Body string
}{
Id: "example",
From: "[email protected]",
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) Queryingindex, _ := bleve.Open("example.bleve")
query := bleve.NewQueryStringQuery("bleve")
searchRequest := bleve.NewSearchRequest(query)
searchResult, _ := index.Search(searchRequest) Command Line InterfaceTo install the CLI for the latest release of bleve, run: $ go install github.com/blevesearch/bleve/v2/cmd/bleve@latest
Text Analysis Wizardhttps://bleveanalysis.couchbase.com LicenseApache License Version 2.0 |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论