0
0
bleve/index
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
..
store added some batch size 1000 microbenchmarks 2015-01-30 15:58:39 -08:00
upside_down significant change to index format, support dictionary rows 2015-03-10 16:22:19 -04:00
index.go significant change to index format, support dictionary rows 2015-03-10 16:22:19 -04:00