dispatch/vendor/github.com/blevesearch/bleve
Ken-Håvard Lieng eedc687f18 Send the 25 last messages for each channel to the client on load 2017-04-20 01:51:55 +02:00
..
analysis Send the 25 last messages for each channel to the client on load 2017-04-20 01:51:55 +02:00
document Upgrade server dependencies, manage them with govendor 2017-04-18 03:02:51 +02:00
geo Upgrade server dependencies, manage them with govendor 2017-04-18 03:02:51 +02:00
index Upgrade server dependencies, manage them with govendor 2017-04-18 03:02:51 +02:00
mapping Upgrade server dependencies, manage them with govendor 2017-04-18 03:02:51 +02:00
numeric Upgrade server dependencies, manage them with govendor 2017-04-18 03:02:51 +02:00
registry Upgrade server dependencies, manage them with govendor 2017-04-18 03:02:51 +02:00
search Upgrade server dependencies, manage them with govendor 2017-04-18 03:02:51 +02:00
CONTRIBUTING.md Upgrade server dependencies, manage them with govendor 2017-04-18 03:02:51 +02:00
LICENSE Switch from Godep to go vendoring 2016-03-01 01:51:26 +01:00
README.md Upgrade server dependencies, manage them with govendor 2017-04-18 03:02:51 +02:00
config.go Upgrade server dependencies, manage them with govendor 2017-04-18 03:02:51 +02:00
config_app.go Upgrade server dependencies, manage them with govendor 2017-04-18 03:02:51 +02:00
config_disk.go Upgrade server dependencies, manage them with govendor 2017-04-18 03:02:51 +02:00
doc.go Upgrade server dependencies, manage them with govendor 2017-04-18 03:02:51 +02:00
error.go Upgrade server dependencies, manage them with govendor 2017-04-18 03:02:51 +02:00
index.go Upgrade server dependencies, manage them with govendor 2017-04-18 03:02:51 +02:00
index_alias.go Upgrade server dependencies, manage them with govendor 2017-04-18 03:02:51 +02:00
index_alias_impl.go Upgrade server dependencies, manage them with govendor 2017-04-18 03:02:51 +02:00
index_impl.go Upgrade server dependencies, manage them with govendor 2017-04-18 03:02:51 +02:00
index_meta.go Upgrade server dependencies, manage them with govendor 2017-04-18 03:02:51 +02:00
index_stats.go Upgrade server dependencies, manage them with govendor 2017-04-18 03:02:51 +02:00
mapping.go Upgrade server dependencies, manage them with govendor 2017-04-18 03:02:51 +02:00
query.go Upgrade server dependencies, manage them with govendor 2017-04-18 03:02:51 +02:00
search.go Upgrade server dependencies, manage them with govendor 2017-04-18 03:02:51 +02:00

README.md

bleve bleve

Build Status Coverage Status GoDoc Join the chat at https://gitter.im/blevesearch/bleve codebeat Go Report Card Sourcegraph License

modern text indexing in go - blevesearch.com

Try out bleve live by searching the bleve website.

Features

  • Index any go data structure (including JSON)
  • Intelligent defaults backed up by powerful configuration
  • Supported field types:
    • Text, Numeric, Date
  • Supported query types:
    • Term, Phrase, Match, Match Phrase, Prefix
    • Conjunction, Disjunction, Boolean
    • Numeric Range, Date Range
    • Simple query syntax for human entry
  • tf-idf Scoring
  • Search result match highlighting
  • Supports Aggregating Facets:
    • Terms Facet
    • Numeric Range Facet
    • Date Range Facet

Discussion

Discuss usage and development of bleve in the google group.

Indexing

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)

Querying

index, _ := bleve.Open("example.bleve")
query := bleve.NewQueryStringQuery("bleve")
searchRequest := bleve.NewSearchRequest(query)
searchResult, _ := index.Search(searchRequest)

License

Apache License Version 2.0