0
0
Fork 0
A modern text indexing library for go. (this is a mirror of the github repository) http://www.blevesearch.com/
Go to file
Marty Schoch d84187fd24 added apostrophe filter to improve turkish analyzer
closes #27
2014-08-06 08:50:00 -04:00
analysis added apostrophe filter to improve turkish analyzer 2014-08-06 08:50:00 -04:00
docs upaated README 2014-07-31 10:58:20 -04:00
document added support for date range fields and queries 2014-08-03 17:19:04 -04:00
examples removed optional element, and fixed took time formatting 2014-08-06 08:25:42 -04:00
http added method to list fields in the index 2014-07-31 11:47:36 -04:00
index added method to list fields in the index 2014-07-31 11:47:36 -04:00
numeric_util fix go vet 2014-08-02 19:17:53 -04:00
samples/beer-sample added support for stored fields and highlighting results 2014-06-26 11:43:13 -04:00
search added initial support for indexing and querying numeric values 2014-08-02 19:05:58 -04:00
utils/bleve_dump introduced a config option to disable creating indexes if they don't already exist 2014-07-30 14:29:26 -04:00
.gitignore adding beer-sample to examples 2014-07-31 11:51:27 -04:00
LICENSE adding license file 2014-04-17 17:03:15 -04:00
README.md upaated README 2014-07-31 10:58:20 -04:00
config.go added apostrophe filter to improve turkish analyzer 2014-08-06 08:50:00 -04:00
error.go major refactor, apologies for the large commit 2014-07-30 12:30:38 -04:00
genparser.sh major refactor, apologies for the large commit 2014-07-30 12:30:38 -04:00
index.go added method to list fields in the index 2014-07-31 11:47:36 -04:00
index_impl.go added method to list fields in the index 2014-07-31 11:47:36 -04:00
index_test.go major refactor, apologies for the large commit 2014-07-30 12:30:38 -04:00
mapping_document.go introduced a config option to disable creating indexes if they don't already exist 2014-07-30 14:29:26 -04:00
mapping_field.go fix issues identified by go vet 2014-08-03 17:21:41 -04:00
mapping_index.go fix broken test 2014-08-06 08:42:57 -04:00
mapping_test.go major refactor, apologies for the large commit 2014-07-30 12:30:38 -04:00
query.go added support for date range fields and queries 2014-08-03 17:19:04 -04:00
query_boolean.go major refactor, apologies for the large commit 2014-07-30 12:30:38 -04:00
query_conjunction.go major refactor, apologies for the large commit 2014-07-30 12:30:38 -04:00
query_date_range.go added support for a default field 2014-08-06 08:23:29 -04:00
query_disjunction.go major refactor, apologies for the large commit 2014-07-30 12:30:38 -04:00
query_match.go added support for a default field 2014-08-06 08:23:29 -04:00
query_match_all.go major refactor, apologies for the large commit 2014-07-30 12:30:38 -04:00
query_match_none.go major refactor, apologies for the large commit 2014-07-30 12:30:38 -04:00
query_match_phrase.go added support for a default field 2014-08-06 08:23:29 -04:00
query_numeric_range.go added support for a default field 2014-08-06 08:23:29 -04:00
query_phrase.go major refactor, apologies for the large commit 2014-07-30 12:30:38 -04:00
query_syntax.go added support for a default field 2014-08-06 08:23:29 -04:00
query_syntax.nex major refactor, apologies for the large commit 2014-07-30 12:30:38 -04:00
query_syntax.nn.go major refactor, apologies for the large commit 2014-07-30 12:30:38 -04:00
query_syntax.y major refactor, apologies for the large commit 2014-07-30 12:30:38 -04:00
query_syntax_parser.go major refactor, apologies for the large commit 2014-07-30 12:30:38 -04:00
query_term.go added support for a default field 2014-08-06 08:23:29 -04:00
reflect.go major refactor, apologies for the large commit 2014-07-30 12:30:38 -04:00
search.go upaated README 2014-07-31 10:58:20 -04:00
y.go major refactor, apologies for the large commit 2014-07-30 12:30:38 -04:00

README.md

bleve bleve

modern text indexing in go

Features

  • Index any go data structure (including JSON)
  • Intelligent defaults backed up by powerful configuration
  • Supported field types:
    • Text
  • Supported query types:
    • Term, Phrase, Match, Match Phrase
    • Conjunction, Disjunction, Boolean
    • Simple query syntax for human entry
  • Search result match highlighting

Indexing

	message := struct{
		From: "marty.schoch@gmail.com",
		Body: "bleve indexing is easy",
	}

	mapping := bleve.NewIndexMapping()
	index, _ := bleve.Open("example.bleve", mapping)
	index.IndexId(message)

Querying

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

Status

Build Status Coverage Status