Package com.browseengine.bobo.facets.data

Examples of com.browseengine.bobo.facets.data.FacetDataCache.load()


  @SuppressWarnings({ "unchecked", "rawtypes" })
  @Override
  public FacetDataCache load(BoboSegmentReader reader) throws IOException {
    FacetDataCache<?> dataCache = new FacetDataCache();
    dataCache.load(_indexFieldName, reader, _termListFactory);
    return dataCache;
  }

  @Override
  public BoboDocScorer getDocScorer(BoboSegmentReader reader,
View Full Code Here


  }

  @Override
  public FacetDataCache load(BoboIndexReader reader) throws IOException {
    FacetDataCache dataCache = new FacetDataCache();
    dataCache.load(_indexFieldName, reader, _termListFactory);
    return dataCache;
  }
 
  public BoboDocScorer getDocScorer(BoboIndexReader reader,FacetTermScoringFunctionFactory scoringFunctionFactory,Map<String,Float> boostMap){
    FacetDataCache dataCache = getFacetData(reader);
View Full Code Here

  @SuppressWarnings({ "unchecked", "rawtypes" })
  @Override
  public FacetDataCache<?> load(BoboSegmentReader reader) throws IOException {
    FacetDataCache<?> dataCache = new FacetDataCache();
    dataCache.load(_indexFieldName, reader, _termListFactory);
    return dataCache;
  }

  @Override
  public BoboDocScorer getDocScorer(BoboSegmentReader reader,
View Full Code Here

  @SuppressWarnings({ "unchecked", "rawtypes" })
  @Override
  public FacetDataCache<?> load(BoboSegmentReader reader) throws IOException {
    if (!_multiValue) {
      FacetDataCache<?> dataCache = new FacetDataCache();
      dataCache.load(_indexedName, reader, _termListFactory);
      return dataCache;
    } else {
      MultiValueFacetDataCache<?> dataCache = new MultiValueFacetDataCache();
      dataCache.load(_indexedName, reader, _termListFactory);
      return dataCache;
View Full Code Here

      FacetDataCache<?> dataCache = new FacetDataCache();
      dataCache.load(_indexedName, reader, _termListFactory);
      return dataCache;
    } else {
      MultiValueFacetDataCache<?> dataCache = new MultiValueFacetDataCache();
      dataCache.load(_indexedName, reader, _termListFactory);
      return dataCache;
    }
  }
}
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.