Uses of Class
org.apache.lucene.facet.index.params.FacetIndexingParams

Packages that use FacetIndexingParams
org.apache.lucene.facet.associations Category Association 
org.apache.lucene.facet.index Indexing of document categories 
org.apache.lucene.facet.index.params Indexing-time specifications for handling facets 
org.apache.lucene.facet.search Faceted Search API 
org.apache.lucene.facet.search.cache Caching to speed up facets accumulation. 
org.apache.lucene.facet.search.params Parameters for Faceted Search 
org.apache.lucene.facet.util Various utilities for faceted search 
 

Uses of FacetIndexingParams in org.apache.lucene.facet.associations
 

Constructors in org.apache.lucene.facet.associations with parameters of type FacetIndexingParams
AssociationsDrillDownStream(CategoryAssociationsContainer associations, FacetIndexingParams indexingParams)
           
AssociationsFacetFields(TaxonomyWriter taxonomyWriter, FacetIndexingParams params)
          Constructs a new instance with the given facet indexing params.
 

Uses of FacetIndexingParams in org.apache.lucene.facet.index
 

Fields in org.apache.lucene.facet.index declared as FacetIndexingParams
protected  FacetIndexingParams FacetFields.indexingParams
           
 

Constructors in org.apache.lucene.facet.index with parameters of type FacetIndexingParams
CountingListBuilder(CategoryListParams categoryListParams, FacetIndexingParams indexingParams, TaxonomyWriter taxoWriter)
           
DrillDownStream(Iterable<CategoryPath> categories, FacetIndexingParams indexingParams)
           
FacetFields(TaxonomyWriter taxonomyWriter, FacetIndexingParams params)
          Constructs a new instance with the given facet indexing params.
OrdinalMappingAtomicReader(AtomicReader in, int[] ordinalMap, FacetIndexingParams indexingParams)
          Wraps an AtomicReader, mapping ordinals according to the ordinalMap, using the provided indexingParams.
 

Uses of FacetIndexingParams in org.apache.lucene.facet.index.params
 

Subclasses of FacetIndexingParams in org.apache.lucene.facet.index.params
 class PerDimensionIndexingParams
          A FacetIndexingParams that utilizes different category lists, defined by the dimension specified by a category (see PerDimensionIndexingParams.PerDimensionIndexingParams(Map, CategoryListParams).
 

Fields in org.apache.lucene.facet.index.params declared as FacetIndexingParams
static FacetIndexingParams FacetIndexingParams.ALL_PARENTS
          A FacetIndexingParams which fixes OrdinalPolicy to OrdinalPolicy.NO_PARENTS.
 

Uses of FacetIndexingParams in org.apache.lucene.facet.search
 

Methods in org.apache.lucene.facet.search with parameters of type FacetIndexingParams
 TotalFacetCounts TotalFacetCountsCache.getTotalCounts(IndexReader indexReader, TaxonomyReader taxonomy, FacetIndexingParams facetIndexingParams, CategoryListCache clCache)
          Get the total facet counts for a reader/taxonomy pair and facet indexing parameters.
 void TotalFacetCountsCache.load(File inputFile, IndexReader indexReader, TaxonomyReader taxonomy, FacetIndexingParams facetIndexingParams)
          Load TotalFacetCounts matching input parameters from the provided outputFile and add them into the cache for the provided indexReader, taxonomy, and facetIndexingParams.
static Query DrillDown.query(FacetIndexingParams iParams, Query baseQuery, CategoryPath... paths)
          Wraps a given Query as a drill-down query over the given categories, assuming all are required (e.g.
 void TotalFacetCountsCache.store(File outputFile, IndexReader indexReader, TaxonomyReader taxonomy, FacetIndexingParams facetIndexingParams, CategoryListCache clCache)
          Store the TotalFacetCounts matching input parameters into the provided outputFile, making them available for a later call to TotalFacetCountsCache.load(File, IndexReader, TaxonomyReader, FacetIndexingParams).
static Term DrillDown.term(FacetIndexingParams iParams, CategoryPath path)
          Return a drill-down Term for a category.
 

Uses of FacetIndexingParams in org.apache.lucene.facet.search.cache
 

Methods in org.apache.lucene.facet.search.cache with parameters of type FacetIndexingParams
 void CategoryListCache.loadAndRegister(CategoryListParams clp, IndexReader reader, TaxonomyReader taxo, FacetIndexingParams iparams)
          Load and register CategoryListData.
 

Uses of FacetIndexingParams in org.apache.lucene.facet.search.params
 

Fields in org.apache.lucene.facet.search.params declared as FacetIndexingParams
protected  FacetIndexingParams FacetSearchParams.indexingParams
           
 

Methods in org.apache.lucene.facet.search.params that return FacetIndexingParams
 FacetIndexingParams FacetSearchParams.getFacetIndexingParams()
          Returns the FacetIndexingParams that were passed to the constructor.
 

Constructors in org.apache.lucene.facet.search.params with parameters of type FacetIndexingParams
FacetSearchParams(List<FacetRequest> facetRequests, FacetIndexingParams indexingParams)
          Initilizes with the given requests and FacetIndexingParams.
 

Uses of FacetIndexingParams in org.apache.lucene.facet.util
 

Methods in org.apache.lucene.facet.util with parameters of type FacetIndexingParams
static String PartitionsUtils.partitionNameByOrdinal(FacetIndexingParams iParams, CategoryListParams clParams, int ordinal)
          Partition name by category ordinal
static int PartitionsUtils.partitionNumber(FacetIndexingParams iParams, int ordinal)
          Partition number of an ordinal.
static int PartitionsUtils.partitionOffset(FacetIndexingParams iParams, int partitionNumber, TaxonomyReader taxonomyReader)
          Get the offset for a given partition.
static int PartitionsUtils.partitionSize(FacetIndexingParams indexingParams, TaxonomyReader taxonomyReader)
          Get the partition size in this parameter, or return the size of the taxonomy, which is smaller.
 



Copyright © 2000-2013 Apache Software Foundation. All Rights Reserved.