guillep2k 5661773018 Remove unique filter from repo indexer analyzer. (#7878) | il y a 5 ans | |
---|---|---|
.. | ||
analysis | il y a 5 ans | |
document | il y a 5 ans | |
geo | il y a 5 ans | |
index | il y a 5 ans | |
mapping | il y a 5 ans | |
numeric | il y a 5 ans | |
registry | il y a 7 ans | |
search | il y a 5 ans | |
size | il y a 5 ans | |
.gitignore | il y a 5 ans | |
.travis.yml | il y a 5 ans | |
CONTRIBUTING.md | il y a 5 ans | |
LICENSE | il y a 7 ans | |
README.md | il y a 5 ans | |
config.go | il y a 6 ans | |
config_app.go | il y a 6 ans | |
config_disk.go | il y a 7 ans | |
doc.go | il y a 7 ans | |
error.go | il y a 7 ans | |
index.go | il y a 5 ans | |
index_alias.go | il y a 7 ans | |
index_alias_impl.go | il y a 5 ans | |
index_impl.go | il y a 5 ans | |
index_meta.go | il y a 5 ans | |
index_stats.go | il y a 7 ans | |
mapping.go | il y a 7 ans | |
query.go | il y a 6 ans | |
search.go | il y a 5 ans |
modern text indexing in go - blevesearch.com
Try out bleve live by searching the bleve website.
Discuss usage and development of bleve in the google group.
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)
Apache License Version 2.0