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