Class RandomSamplingFacetsCollector
Collects hits for subsequent faceting, using sampling if needed. Once you've
run a search and collect hits into this, instantiate one of the
Facets subclasses to do the facet counting. Note that this collector
does not collect the scores of matching docs (i.e.
Scores) is null
.
If you require the original set of hits, you can call
Get
Implements
Inherited Members
Namespace: Lucene.Net.Facet
Assembly: Lucene.Net.Facet.dll
Syntax
public class RandomSamplingFacetsCollector : FacetsCollector, ICollector
Constructors
| Improve this Doc View SourceRandomSamplingFacetsCollector(Int32)
Constructor with the given sample size and default seed.
Declaration
public RandomSamplingFacetsCollector(int sampleSize)
Parameters
Type | Name | Description |
---|---|---|
System. |
sampleSize |
See Also
| Improve this Doc View SourceRandomSamplingFacetsCollector(Int32, Int64)
Constructor with the given sample size and seed.
Declaration
public RandomSamplingFacetsCollector(int sampleSize, long seed)
Parameters
Type | Name | Description |
---|---|---|
System. |
sampleSize | The preferred sample size. If the number of hits is greater than the size, sampling will be done using a sample ratio of sampling size / totalN. For example: 1000 hits, sample size = 10 results in samplingRatio of 0.01. If the number of hits is lower, no sampling is done at all |
System. |
seed | The random seed. If |
Properties
| Improve this Doc View SourceSamplingRate
Returns the sampling rate that was used.
Declaration
public virtual double SamplingRate { get; }
Property Value
Type | Description |
---|---|
System. |
Methods
| Improve this Doc View SourceAmortizeFacetCounts(FacetResult, FacetsConfig, IndexSearcher)
Note: if you use a counting Facets implementation, you can amortize the
sampled counts by calling this method. Uses the Facets
Declaration
public virtual FacetResult AmortizeFacetCounts(FacetResult res, FacetsConfig config, IndexSearcher searcher)
Parameters
Type | Name | Description |
---|---|---|
Facet |
res | |
Facets |
config | |
Index |
searcher |
Returns
Type | Description |
---|---|
Facet |
GetMatchingDocs()
Returns the sampled list of the matching documents. Note that a
Facets
Note: One or more of the Facets
Note: Totalnull
Declaration
public override IList<FacetsCollector.MatchingDocs> GetMatchingDocs()
Returns
Type | Description |
---|---|
System. |
Overrides
| Improve this Doc View SourceGetOriginalMatchingDocs()
Returns the original matching documents.
Declaration
public virtual IList<FacetsCollector.MatchingDocs> GetOriginalMatchingDocs()
Returns
Type | Description |
---|---|
System. |