0
0
A modern text indexing library for go. (this is a mirror of the github repository) http://www.blevesearch.com/
Go to file
2016-10-01 13:06:03 -07:00
analysis BREAKING CHANGE - renamed packages to be shorter and not use _ 2016-09-30 12:36:10 -04:00
cmd/bleve BREAKING CHANGE - rename upside_down to upsidedown 2016-09-30 12:36:38 -04:00
config BREAKING CHANGE - rename fragment_formatters -> format 2016-09-30 12:36:48 -04:00
docs add build tag protecting merge-coverprofile 2016-09-20 14:29:01 -04:00
document BREAKING CHANGE - rename numeric_util to numeric 2016-09-30 12:36:43 -04:00
http BREAKING CHANGE - rename upside_down to upsidedown 2016-09-30 12:36:38 -04:00
index field cache also tracks fieldIndex -> fieldName reverse mapping 2016-10-01 13:06:03 -07:00
mapping BREAKING CHANGE - renamed packages to be shorter and not use _ 2016-09-30 12:36:10 -04:00
numeric BREAKING CHANGE - rename numeric_util to numeric 2016-09-30 12:36:43 -04:00
registry remove unused code 2016-08-31 13:52:02 -04:00
search more careful Close()'ing and cleanup of searchers 2016-09-30 16:07:01 -07:00
test remove commented out section found by @steveyen code review 2016-09-30 12:36:52 -04:00
vendor update moss gvt manifest for SeekTo() API 2016-09-23 07:18:14 -07:00
.gitignore initial refactor of query into separate package 2016-09-29 14:54:16 -04:00
.travis.yml remove firestorm index scheme 2016-06-26 07:51:41 -04:00
config_app.go adding appenginevm build tag 2016-09-28 18:31:36 -04:00
config_disk.go adding appenginevm build tag 2016-09-28 18:31:36 -04:00
config.go BREAKING CHANGE - rename upside_down to upsidedown 2016-09-30 12:36:38 -04:00
CONTRIBUTING.md adding CONTRIBUTING.md to repo 2016-06-26 09:48:43 -04:00
doc.go apply doc fix patch from rakoo 2014-09-07 09:09:47 -04:00
error.go initial refactor of query into separate package 2016-09-29 14:54:16 -04:00
examples_test.go address code review comments from @steveyen 2016-09-29 14:54:17 -04:00
index_alias_impl_test.go BREAKING CHANGE - rename numeric_util to numeric 2016-09-30 12:36:43 -04:00
index_alias_impl.go refactor mapping to inteface and move into separate package 2016-09-29 14:53:18 -04:00
index_alias.go Fix typos in comments and strings 2014-12-18 18:43:12 +01:00
index_impl.go BREAKING CHANGE - rename upside_down to upsidedown 2016-09-30 12:36:38 -04:00
index_meta_test.go fix issues identified by errcheck 2015-04-07 15:39:56 -04:00
index_meta.go BREAKING CHANGE - rename upside_down to upsidedown 2016-09-30 12:36:38 -04:00
index_stats.go moved fields requiring 64-bit alignment to start of struct 2016-03-20 10:38:28 -04:00
index_test.go BREAKING CHANGE - renamed packages to be shorter and not use _ 2016-09-30 12:36:10 -04:00
index.go refactor mapping to inteface and move into separate package 2016-09-29 14:53:18 -04:00
LICENSE adding license file 2014-04-17 17:03:15 -04:00
mapping.go refactor mapping to inteface and move into separate package 2016-09-29 14:53:18 -04:00
query.go address code review comments from @steveyen 2016-09-29 14:54:17 -04:00
README.md update readme 2016-09-29 16:23:31 -04:00
search_test.go parse search results by converting strings back to errors 2016-04-26 17:56:37 -04:00
search.go heavier refactor of Query interface to simplify 2016-09-29 14:54:16 -04:00

bleve bleve

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

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