0
0
bleve/search/searchers
Marty Schoch 522f9d5cc7 significant change to index format, support dictionary rows
this introduces disk format v4
now the summary rows for a term are stored in their own
"dictionary row" format, previously the same information
was stored in special term frequency rows
this now allows us to easily iterate all the terms for a field
in sorted order (useful for many other fuzzy data structures)

at the top-level of bleve you can now browse terms within a field
using the following api on the Index interface:

  FieldDict(field string) (index.FieldDict, error)
  FieldDictRange(field string, startTerm []byte, endTerm []byte) (index.FieldDict, error)
  FieldDictPrefix(field string, termPrefix []byte) (index.FieldDict, error)

fixes #127
2015-03-10 16:22:19 -04:00
..
base_test.go text analysis now moved out of index write lock onto goroutine 2014-09-24 08:13:14 -04:00
ordered_searchers_list.go add newline between license and package 2014-09-02 10:54:50 -04:00
search_boolean_test.go refactored API a bit 2014-10-31 09:40:23 -04:00
search_boolean.go first pass at checking errors that were ignored 2015-03-06 14:46:29 -05:00
search_conjunction_test.go refactored API a bit 2014-10-31 09:40:23 -04:00
search_conjunction.go first pass at checking errors that were ignored 2015-03-06 14:46:29 -05:00
search_disjunction_test.go refactored API a bit 2014-10-31 09:40:23 -04:00
search_disjunction.go first pass at checking errors that were ignored 2015-03-06 14:46:29 -05:00
search_fuzzy.go significant change to index format, support dictionary rows 2015-03-10 16:22:19 -04:00
search_match_all_test.go refactored API a bit 2014-10-31 09:40:23 -04:00
search_match_all.go first pass at checking errors that were ignored 2015-03-06 14:46:29 -05:00
search_match_none_test.go refactored API a bit 2014-10-31 09:40:23 -04:00
search_match_none.go first pass at checking errors that were ignored 2015-03-06 14:46:29 -05:00
search_numeric_range_test.go major refactor of search package 2014-09-01 11:15:38 -04:00
search_numeric_range.go first pass at checking errors that were ignored 2015-03-06 14:46:29 -05:00
search_phrase_test.go refactored API a bit 2014-10-31 09:40:23 -04:00
search_phrase.go first pass at checking errors that were ignored 2015-03-06 14:46:29 -05:00
search_term_prefix.go significant change to index format, support dictionary rows 2015-03-10 16:22:19 -04:00
search_term_test.go refactored API a bit 2014-10-31 09:40:23 -04:00
search_term.go first pass at checking errors that were ignored 2015-03-06 14:46:29 -05:00