Examples of TaxonomyFacetCounts


Examples of org.apache.lucene.facet.taxonomy.TaxonomyFacetCounts

    } else {
      OrdinalsReader ordsReader = new DocValuesOrdinalsReader(indexFieldName);
      if (random().nextBoolean()) {
        ordsReader = new CachedOrdinalsReader(ordsReader);
      }
      facets = new TaxonomyFacetCounts(ordsReader, taxoReader, config, c);
    }

    return facets;
  }
View Full Code Here

Examples of org.apache.lucene.facet.taxonomy.TaxonomyFacetCounts

            for (Map.Entry<String, FacetConfig> fEntry : summaryConfigValues.entrySet()) {
                FacetConfig facetConfig = fEntry.getValue();
                String facetFieldName = facetConfig.getIndexKey() +
                        SearchManager.FACET_FIELD_SUFFIX;
                OrdinalsReader ordsReader = new DocValuesOrdinalsReader(facetFieldName);
                Facets facets = new TaxonomyFacetCounts(ordsReader, taxonomyReader, facetConfiguration, facetCollector);

                FacetResult facetResults = facets.getTopChildren(facetConfig.getMax(), facetFieldName); // facetConfig.getIndexKey()
                if (facetResults != null) {
                    // Create the XML element for the response
                    String facetName = facetConfig.getPlural();
                    Element facetsSummaryElement = new Element(facetName);
View Full Code Here

Examples of org.apache.lucene.facet.taxonomy.TaxonomyFacetCounts

    } else {
      OrdinalsReader ordsReader = new DocValuesOrdinalsReader(indexFieldName);
      if (random().nextBoolean()) {
        ordsReader = new CachedOrdinalsReader(ordsReader);
      }
      facets = new TaxonomyFacetCounts(ordsReader, taxoReader, config, c);
    }

    return facets;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.