本文整理汇总了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);
}
}
示例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;
}