0
0
Fork 0
bleve/search
Marty Schoch a16efa5e78 add experimental support for indexing/query geo points
New field type GeoPointField, or "geopoint" in mapping JSON.

Currently structs and maps are considered when a mapping explicitly
marks a field as type "geopoint".  Several variants of "lon", "lng", and "lat"
are looked for in map keys, struct field names, or method names.

New query type GeoBoundingBoxQuery searches for documents which have a
GeoPointField indexed with a value that is inside the specified bounding box.

New query type GeoDistanceQuery searches for documents which have a
GeoPointField indexed with a value that is less than or equal to the
specified distance from the specified location.

New sort by method "geo_distance".  Hits can be sorted by their distance
from the specified location.

New geo utility package with all routines ported from Lucene.

New FilteringSearcher, which wraps an existing Searcher, but filters
all hits with a user-provided callback.
2017-03-24 17:22:21 -07:00
..
collector more collector benchmarks with larger sizes 2017-03-16 13:46:28 -07:00
facet reduce garbage created while processing facets 2017-03-02 17:00:46 -05:00
highlight remove use of float64 to represent int things 2017-02-09 20:15:59 -05:00
query add experimental support for indexing/query geo points 2017-03-24 17:22:21 -07:00
scorer remove use of float64 to represent int things 2017-02-09 20:15:59 -05:00
searcher add experimental support for indexing/query geo points 2017-03-24 17:22:21 -07:00
collector.go nicer formatting of license header 2016-10-02 10:13:14 -04:00
explanation.go nicer formatting of license header 2016-10-02 10:13:14 -04:00
facets_builder.go reduce garbage created while processing facets 2017-03-02 17:00:46 -05:00
facets_builder_test.go numeric range facet merging compare range values not pointers 2016-11-03 15:48:46 -04:00
levenshtein.go removed extra ptr indirection from LevenshteinDistance 2016-10-11 08:49:10 -07:00
levenshtein_test.go removed extra ptr indirection from LevenshteinDistance 2016-10-11 08:49:10 -07:00
pool.go DocumentMatchPool hits allocator outside of loop 2017-02-06 14:26:59 -08:00
pool_test.go fix misspellings 2016-10-02 12:11:15 -04:00
search.go reduce garbage created while processing facets 2017-03-02 17:00:46 -05:00
sort.go add experimental support for indexing/query geo points 2017-03-24 17:22:21 -07:00
util.go nicer formatting of license header 2016-10-02 10:13:14 -04:00
util_test.go nicer formatting of license header 2016-10-02 10:13:14 -04:00