Documentation ¶
Index ¶
- Constants
- Variables
- type TopNCollector
- func (hc *TopNCollector) Collect(ctx context.Context, searcher search.Searcher, reader index.IndexReader) error
- func (hc *TopNCollector) FacetResults() search.FacetResults
- func (hc *TopNCollector) MaxScore() float64
- func (hc *TopNCollector) Results() search.DocumentMatchCollection
- func (hc *TopNCollector) SetFacetsBuilder(facetsBuilder *search.FacetsBuilder)
- func (hc *TopNCollector) Took() time.Duration
- func (hc *TopNCollector) Total() uint64
Constants ¶
const CheckDoneEvery = uint64(1024)
CheckDoneEvery controls how frequently we check the context deadline
Variables ¶
var PreAllocSizeSkipCap = 1000
PreAllocSizeSkipCap will cap preallocation to this amount when size+skip exceeds this value
Functions ¶
This section is empty.
Types ¶
type TopNCollector ¶ added in v0.4.0
type TopNCollector struct {
// contains filtered or unexported fields
}
TopNCollector collects the top N hits, optionally skipping some results
func NewTopNCollector ¶ added in v0.4.0
func NewTopNCollector(size int, skip int, sort search.SortOrder) *TopNCollector
NewTopNCollector builds a collector to find the top 'size' hits skipping over the first 'skip' hits ordering hits by the provided sort order
func (*TopNCollector) Collect ¶ added in v0.4.0
func (hc *TopNCollector) Collect(ctx context.Context, searcher search.Searcher, reader index.IndexReader) error
Collect goes to the index to find the matching documents
func (*TopNCollector) FacetResults ¶ added in v0.4.0
func (hc *TopNCollector) FacetResults() search.FacetResults
FacetResults returns the computed facets results
func (*TopNCollector) MaxScore ¶ added in v0.4.0
func (hc *TopNCollector) MaxScore() float64
MaxScore returns the maximum score seen across all the hits
func (*TopNCollector) Results ¶ added in v0.4.0
func (hc *TopNCollector) Results() search.DocumentMatchCollection
Results returns the collected hits
func (*TopNCollector) SetFacetsBuilder ¶ added in v0.4.0
func (hc *TopNCollector) SetFacetsBuilder(facetsBuilder *search.FacetsBuilder)
SetFacetsBuilder registers a facet builder for this collector
func (*TopNCollector) Took ¶ added in v0.4.0
func (hc *TopNCollector) Took() time.Duration
Took returns the time spent collecting hits
func (*TopNCollector) Total ¶ added in v0.4.0
func (hc *TopNCollector) Total() uint64
Total returns the total number of hits