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 72ee4147e6 added more index crud test 2014-11-25 16:23:48 -05:00
analysis add support for dictionary based compound word filter 2014-11-18 15:18:42 -05:00
docs added more index crud test 2014-11-25 16:23:48 -05:00
document continued refactoring of the mapping code 2014-09-03 13:02:10 -04:00
http removes dependency on mux from bleve.http 2014-10-31 14:44:15 -04:00
index Remove unneeded else clauses 2014-11-20 20:34:05 +01:00
numeric_util more golint cleanups 2014-09-03 18:47:02 -04:00
registry fix compilation 2014-09-07 14:13:32 -04:00
search fix to phrase/phrase match search involving stop words 2014-11-25 10:07:54 -05:00
test fix to phrase/phrase match search involving stop words 2014-11-25 10:07:54 -05:00
utils adding bleve_bulkindex utility 2014-11-19 19:46:24 +01:00
.gitignore renamed/moved examples/bleve_index_json to utils/bleve_index 2014-09-01 16:14:29 -04:00
LICENSE adding license file 2014-04-17 17:03:15 -04:00
README.md Update README.md 2014-09-13 19:38:24 -07:00
config.go add support for dictionary based compound word filter 2014-11-18 15:18:42 -05:00
config_cld2.go rename imports from couchbaselabs to blevesearch 2014-08-28 15:38:57 -04:00
config_icu.go renamed unicode_word_boundary package to icu 2014-10-17 15:15:13 -04:00
config_kagome.go relocated kagome tokenizer and introduced ja analyzer 2014-09-16 11:21:29 -04:00
config_leveldb.go rename imports from couchbaselabs to blevesearch 2014-08-28 15:38:57 -04:00
config_stemmer.go rename imports from couchbaselabs to blevesearch 2014-08-28 15:38:57 -04:00
doc.go apply doc fix patch from rakoo 2014-09-07 09:09:47 -04:00
error.go initial impl of Index Aliases 2014-10-29 09:22:11 -04:00
genparser.sh refactored yacc parsing code to be threadsafe, removed mutex 2014-10-23 15:56:59 -04:00
index.go make batch internals private 2014-11-25 11:11:28 -05:00
index_alias.go initial impl of Index Aliases 2014-10-29 09:22:11 -04:00
index_alias_impl.go better fix for returning on first error 2014-11-25 10:04:15 -05:00
index_alias_impl_test.go added another set of tests for IndexAlias with single Index 2014-11-25 14:56:42 -05:00
index_impl.go make batch internals private 2014-11-25 11:11:28 -05:00
index_meta.go fix issues identified by go lint 2014-09-02 17:40:46 -04:00
index_meta_test.go renamed SyntaxQuery QueryStringQuery 2014-08-29 15:19:02 -04:00
index_stats.go added support for tracking index stats and exposing via expvar 2014-10-02 11:12:49 -07:00
index_test.go added more index crud test 2014-11-25 16:23:48 -05:00
mapping_document.go converted ALL_CAPS constants to CamelCase 2014-09-03 17:48:40 -04:00
mapping_field.go further refactoring of index mappings 2014-09-03 16:40:10 -04:00
mapping_index.go fix go vet issues 2014-10-29 09:31:03 -04:00
mapping_test.go further refactoring of index mappings 2014-09-03 16:40:10 -04:00
query.go fix to phrase/phrase match search involving stop words 2014-11-25 10:07:54 -05:00
query_boolean.go refactored yacc parsing code to be threadsafe, removed mutex 2014-10-23 15:56:59 -04:00
query_conjunction.go major refactor of kvstore/index internals, see below 2014-09-12 17:21:35 -04:00
query_date_range.go major refactor of kvstore/index internals, see below 2014-09-12 17:21:35 -04:00
query_disjunction.go major refactor of kvstore/index internals, see below 2014-09-12 17:21:35 -04:00
query_fuzzy.go finished initial impl of fuzzy search 2014-10-24 13:39:48 -04:00
query_match.go finished initial impl of fuzzy search 2014-10-24 13:39:48 -04:00
query_match_all.go major refactor of kvstore/index internals, see below 2014-09-12 17:21:35 -04:00
query_match_none.go major refactor of kvstore/index internals, see below 2014-09-12 17:21:35 -04:00
query_match_phrase.go fix to phrase/phrase match search involving stop words 2014-11-25 10:07:54 -05:00
query_numeric_range.go major refactor of kvstore/index internals, see below 2014-09-12 17:21:35 -04:00
query_phrase.go fix to phrase/phrase match search involving stop words 2014-11-25 10:07:54 -05:00
query_prefix.go major refactor of kvstore/index internals, see below 2014-09-12 17:21:35 -04:00
query_string.go major refactor of kvstore/index internals, see below 2014-09-12 17:21:35 -04:00
query_string.nex finished initial impl of fuzzy search 2014-10-24 13:39:48 -04:00
query_string.nn.go finished initial impl of fuzzy search 2014-10-24 13:39:48 -04:00
query_string.y finished initial impl of fuzzy search 2014-10-24 13:39:48 -04:00
query_string.y.go finished initial impl of fuzzy search 2014-10-24 13:39:48 -04:00
query_string_parser.go refactored yacc parsing code to be threadsafe, removed mutex 2014-10-23 15:56:59 -04:00
query_string_parser_test.go finished initial impl of fuzzy search 2014-10-24 13:39:48 -04:00
query_term.go major refactor of kvstore/index internals, see below 2014-09-12 17:21:35 -04:00
query_test.go changed error constants to camel case 2014-09-02 14:14:05 -04:00
reflect.go change another variable capitalization 2014-09-02 14:22:21 -04:00
search.go fix bug which prevented size=0 via JSON 2014-11-19 15:58:15 -05:00
search_test.go improving test coverage of search 2014-11-21 15:37:09 -05:00

README.md

bleve bleve

modern text indexing in go - blevesearch.com

Try out bleve live by searching our wiki.

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, _ := bleve.New("example.bleve", mapping)
	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

Status

Build Status Coverage Status