当前位置: 首页>>代码示例>>Java>>正文


Java AggregateStatistic类代码示例

本文整理汇总了Java中org.lemurproject.galago.core.index.stats.AggregateStatistic的典型用法代码示例。如果您正苦于以下问题:Java AggregateStatistic类的具体用法?Java AggregateStatistic怎么用?Java AggregateStatistic使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


AggregateStatistic类属于org.lemurproject.galago.core.index.stats包,在下文中一共展示了AggregateStatistic类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: addToCache

import org.lemurproject.galago.core.index.stats.AggregateStatistic; //导入依赖的package包/类
/**
 * Stores several types of statistics:
 *  partName -> IndexPartStatistics
 *  lengthNode -> CollectionStatistics
 *  countNode -> NodeStatistics
 */
public void addToCache(String key, AggregateStatistic stat) {
  if (!cachedNodes.containsKey(key)) {
    cachedStats.put(key, stat);
  } else {
    // logger.info(Ignoring non-cached node : " + key);
  }
}
 
开发者ID:teanalab,项目名称:demidovii,代码行数:14,代码来源:CachedRetrieval.java

示例2: getCachedStatistic

import org.lemurproject.galago.core.index.stats.AggregateStatistic; //导入依赖的package包/类
public AggregateStatistic getCachedStatistic(String key) throws Exception {
  // check the node cache first - this will avoid zeros.
  if (cachedStats.containsKey(key)) {
    //logger.info("Getting stats from cache for node : " + nodeString);
    return this.cachedStats.get(key);
  }
  return null;
}
 
开发者ID:teanalab,项目名称:demidovii,代码行数:9,代码来源:CachedRetrieval.java


注:本文中的org.lemurproject.galago.core.index.stats.AggregateStatistic类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。