guillep2k 5661773018 Remove unique filter from repo indexer analyzer. (#7878) | 5 лет назад | |
---|---|---|
.. | ||
analysis | 5 лет назад | |
document | 5 лет назад | |
geo | 5 лет назад | |
index | 5 лет назад | |
mapping | 5 лет назад | |
numeric | 5 лет назад | |
registry | 7 лет назад | |
search | 5 лет назад | |
size | 5 лет назад | |
.gitignore | 5 лет назад | |
.travis.yml | 5 лет назад | |
CONTRIBUTING.md | 5 лет назад | |
LICENSE | 7 лет назад | |
README.md | 5 лет назад | |
config.go | 6 лет назад | |
config_app.go | 6 лет назад | |
config_disk.go | 7 лет назад | |
doc.go | 7 лет назад | |
error.go | 7 лет назад | |
index.go | 5 лет назад | |
index_alias.go | 7 лет назад | |
index_alias_impl.go | 5 лет назад | |
index_impl.go | 5 лет назад | |
index_meta.go | 5 лет назад | |
index_stats.go | 7 лет назад | |
mapping.go | 7 лет назад | |
query.go | 6 лет назад | |
search.go | 5 лет назад |
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