net.sf.ehcache.Ehcache.setSampledStatisticsEnabled()方法的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(3.5k)|赞(0)|评价(0)|浏览(107)

本文整理了Java中net.sf.ehcache.Ehcache.setSampledStatisticsEnabled()方法的一些代码示例,展示了Ehcache.setSampledStatisticsEnabled()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Ehcache.setSampledStatisticsEnabled()方法的具体详情如下:
包路径:net.sf.ehcache.Ehcache
类名称:Ehcache
方法名:setSampledStatisticsEnabled

Ehcache.setSampledStatisticsEnabled介绍

[英]Enable/disable sampled statistics collection. Enabling sampled statistics also enables the normal statistics collection if its not already enabled. Disabling sampled statistics does not have any effect on normal statistics.
[中]启用/禁用采样统计信息采集。启用采样统计信息还可以启用正常统计信息收集(如果尚未启用)。禁用采样统计信息不会对正常统计信息产生任何影响。

代码示例

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.ehcache

/**
 * {@inheritDoc}
 */
public void setSampledStatisticsEnabled(boolean enableStatistics) {
  underlyingCache.setSampledStatisticsEnabled(enableStatistics);
}

代码示例来源:origin: com.madgag/mini-git-server-server

public void setSampledStatisticsEnabled(boolean enableStatistics) {
 self.setSampledStatisticsEnabled(enableStatistics);
}

代码示例来源:origin: rtyley/mini-git-server

public void setSampledStatisticsEnabled(boolean enableStatistics) {
 self.setSampledStatisticsEnabled(enableStatistics);
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.ehcache

/**
* {@inheritDoc}
*/
public void setSampledStatisticsEnabled(boolean arg0) {
  // THIS IS GENERATED CODE -- DO NOT HAND MODIFY!
  Thread t = Thread.currentThread();
  ClassLoader prev = t.getContextClassLoader();
  t.setContextClassLoader(this.classLoader);
  try {
    this.cache.setSampledStatisticsEnabled(arg0);
  } finally {
    t.setContextClassLoader(prev);
  }
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.ehcache

/**
 * {@inheritDoc}
 */
public void enableSampledStatistics() {
  if (!cache.isSampledStatisticsEnabled()) {
    try {
      cache.setSampledStatisticsEnabled(true);
    } catch (RuntimeException e) {
      throw Utils.newPlainException(e);
    }
  }
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.ehcache

/**
 * {@inheritDoc}
 */
public void disableSampledStatistics() {
  if (cache.isSampledStatisticsEnabled()) {
    try {
      cache.setSampledStatisticsEnabled(false);
    } catch (RuntimeException e) {
      throw Utils.newPlainException(e);
    }
  }
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.ehcache

/**
 * {@inheritDoc}
 */
public void enableStatistics() {
  if (!cache.isStatisticsEnabled()) {
    try {
      cache.setSampledStatisticsEnabled(true);
      cache.setStatisticsEnabled(true);
    } catch (RuntimeException e) {
      throw Utils.newPlainException(e);
    }
  }
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.ehcache

/**
 * {@inheritDoc}
 */
public void disableStatistics() {
  if (cache.isStatisticsEnabled()) {
    try {
      cache.setSampledStatisticsEnabled(false);
      cache.setStatisticsEnabled(false);
    } catch (RuntimeException e) {
      throw Utils.newPlainException(e);
    }
  }
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.ehcache

private void registerCacheMBean(Ehcache cache) throws InstanceAlreadyExistsException, MBeanRegistrationException,
    NotCompliantMBeanException {
  // enable sampled stats
  if (cache.isStatisticsEnabled()) {
   cache.setSampledStatisticsEnabled(true);
  }
  SampledCache terracottaCacheMBean = new SampledCache(cache);
  try {
    ObjectName cacheObjectName = SampledEhcacheMBeans.getCacheObjectName(clientUUID, registeredCacheManagerName,
        terracottaCacheMBean.getImmutableCacheName());
    mBeanServer.registerMBean(terracottaCacheMBean,
        cacheObjectName);
    mbeans.put(cacheObjectName, terracottaCacheMBean);
  } catch (MalformedObjectNameException e) {
    throw new MBeanRegistrationException(e);
  }
}

代码示例来源:origin: sakaiproject/sakai

rawCache.setSampledStatisticsEnabled(true);

相关文章

微信公众号

最新文章

更多

Ehcache类方法