热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

com.hazelcast.config.MapConfig.isStatisticsEnabled()方法的使用及代码示例

本文整理了Java中com.hazelcast.config.MapConfig.isStatisticsEnabled()方法的一些代码示例,展示了MapConfig.isStatisticsEna

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

MapConfig.isStatisticsEnabled介绍

[英]Checks if statistics are enabled for this map.
[中]

代码示例

代码示例来源:origin: com.hazelcast/hazelcast-all

public DataRecordFactory(MapConfig config, SerializationService serializationService,
PartitioningStrategy partitionStrategy) {
this.serializatiOnService= serializationService;
this.partitiOnStrategy= partitionStrategy;
this.statisticsEnabled = config.isStatisticsEnabled();
this.cacheDeserializedValues = config.getCacheDeserializedValues();
}

代码示例来源:origin: hazelcast/hazelcast-jet

@Override
public LocalMapStats getLocalMapStats() {
if (!mapConfig.isStatisticsEnabled()) {
return EMPTY_LOCAL_MAP_STATS;
}
return mapServiceContext.getLocalMapStatsProvider().createLocalMapStats(name);
}

代码示例来源:origin: com.hazelcast/hazelcast-all

@Override
public LocalMapStats getLocalMapStats() {
if (!mapConfig.isStatisticsEnabled()) {
return EMPTY_LOCAL_MAP_STATS;
}
return mapServiceContext.getLocalMapStatsProvider().createLocalMapStats(name);
}

代码示例来源:origin: com.hazelcast/hazelcast-all

private void updateStatistics(MapContainer mapContainer) {
if (mapContainer.getMapConfig().isStatisticsEnabled()) {
LocalMapStatsImpl localStats = localMapStatsProvider.getLocalMapStatsImpl(mapContainer.getName());
localStats.incrementOtherOperations();
}
}
}

代码示例来源:origin: hazelcast/hazelcast-jet

@Override
protected void beforeResponse() {
final long latencyNanos = System.nanoTime() - startTimeNanos;
final MapService mapService = getService(MapService.SERVICE_NAME);
MapContainer mapCOntainer= mapService.getMapServiceContext().getMapContainer(parameters.name);
if (mapContainer.getMapConfig().isStatisticsEnabled()) {
mapService.getMapServiceContext().getLocalMapStatsProvider().getLocalMapStatsImpl(parameters.name)
.incrementPutLatencyNanos(parameters.entries.size(), latencyNanos);
}
}

代码示例来源:origin: hazelcast/hazelcast-jet

@Override
protected void beforeResponse() {
final long latencyNanos = System.nanoTime() - startTimeNanos;
final MapService mapService = getService(MapService.SERVICE_NAME);
MapContainer mapCOntainer= mapService.getMapServiceContext().getMapContainer(parameters.name);
if (mapContainer.getMapConfig().isStatisticsEnabled()) {
mapService.getMapServiceContext().getLocalMapStatsProvider().getLocalMapStatsImpl(parameters.name)
.incrementGetLatencyNanos(parameters.keys.size(), latencyNanos);
}
}

代码示例来源:origin: hazelcast/hazelcast-jet

private void incrementEventStatsInternal(String mapName) {
MapContainer mapCOntainer= mapServiceContext.getMapContainer(mapName);
if (mapContainer.getMapConfig().isStatisticsEnabled()) {
mapServiceContext.getLocalMapStatsProvider()
.getLocalMapStatsImpl(mapName).incrementReceivedEvents();
}
}

代码示例来源:origin: com.hazelcast/hazelcast-all

private void incrementEventStatsInternal(String mapName) {
MapContainer mapCOntainer= mapServiceContext.getMapContainer(mapName);
if (mapContainer.getMapConfig().isStatisticsEnabled()) {
mapServiceContext.getLocalMapStatsProvider()
.getLocalMapStatsImpl(mapName).incrementReceivedEvents();
}
}

代码示例来源:origin: com.hazelcast/hazelcast-all

public void run() {
empty = recordStore.isEmpty();
if (mapContainer.getMapConfig().isStatisticsEnabled()) {
LocalMapStatsImpl localMapStatsImpl = mapServiceContext.getLocalMapStatsProvider()
.getLocalMapStatsImpl(name);
localMapStatsImpl.incrementOtherOperations();
}
}

代码示例来源:origin: hazelcast/hazelcast-jet

public void run() {
empty = recordStore.isEmpty();
if (mapContainer.getMapConfig().isStatisticsEnabled()) {
LocalMapStatsImpl localMapStatsImpl = mapServiceContext.getLocalMapStatsProvider()
.getLocalMapStatsImpl(name);
localMapStatsImpl.incrementOtherOperations();
}
}

代码示例来源:origin: com.hazelcast/hazelcast-all

@Override
public void run() {
cOntains= recordStore.containsValue(testValue);
if (mapContainer.getMapConfig().isStatisticsEnabled()) {
LocalMapStatsProvider localMapStatsProvider = mapServiceContext.getLocalMapStatsProvider();
localMapStatsProvider.getLocalMapStatsImpl(name).incrementOtherOperations();
}
}

代码示例来源:origin: hazelcast/hazelcast-jet

@Override
public void run() {
cOntains= recordStore.containsValue(testValue);
if (mapContainer.getMapConfig().isStatisticsEnabled()) {
LocalMapStatsProvider localMapStatsProvider = mapServiceContext.getLocalMapStatsProvider();
localMapStatsProvider.getLocalMapStatsImpl(name).incrementOtherOperations();
}
}

代码示例来源:origin: hazelcast/hazelcast-jet

@Override
protected void beforeResponse() {
final long latencyNanos = System.nanoTime() - startTimeNanos;
final MapService mapService = getService(MapService.SERVICE_NAME);
MapContainer mapCOntainer= mapService.getMapServiceContext().getMapContainer(parameters.name);
if (mapContainer.getMapConfig().isStatisticsEnabled()) {
mapService.getMapServiceContext().getLocalMapStatsProvider().getLocalMapStatsImpl(parameters.name)
.incrementRemoveLatencyNanos(latencyNanos);
}
}

代码示例来源:origin: com.hazelcast/hazelcast-all

@Override
protected void beforeResponse() {
final long latencyNanos = System.nanoTime() - startTimeNanos;
final MapService mapService = getService(MapService.SERVICE_NAME);
MapContainer mapCOntainer= mapService.getMapServiceContext().getMapContainer(parameters.name);
if (mapContainer.getMapConfig().isStatisticsEnabled()) {
mapService.getMapServiceContext().getLocalMapStatsProvider().getLocalMapStatsImpl(parameters.name)
.incrementGetLatencyNanos(latencyNanos);
}
}

代码示例来源:origin: com.hazelcast/hazelcast-all

@Override
protected void beforeResponse() {
final long latencyNanos = System.nanoTime() - startTimeNanos;
final MapService mapService = getService(MapService.SERVICE_NAME);
MapContainer mapCOntainer= mapService.getMapServiceContext().getMapContainer(parameters.name);
if (mapContainer.getMapConfig().isStatisticsEnabled()) {
mapService.getMapServiceContext().getLocalMapStatsProvider().getLocalMapStatsImpl(parameters.name)
.incrementRemoveLatencyNanos(latencyNanos);
}
}

代码示例来源:origin: com.hazelcast/hazelcast-all

@Override
public void run() {
recordStore.checkIfLoaded();
size = recordStore.size();
if (mapContainer.getMapConfig().isStatisticsEnabled()) {
LocalMapStatsProvider localMapStatsProvider = mapServiceContext.getLocalMapStatsProvider();
LocalMapStatsImpl localMapStatsImpl = localMapStatsProvider.getLocalMapStatsImpl(name);
localMapStatsImpl.incrementOtherOperations();
}
}

代码示例来源:origin: hazelcast/hazelcast-jet

@Override
public void run() {
recordStore.checkIfLoaded();
size = recordStore.size();
if (mapContainer.getMapConfig().isStatisticsEnabled()) {
LocalMapStatsProvider localMapStatsProvider = mapServiceContext.getLocalMapStatsProvider();
LocalMapStatsImpl localMapStatsImpl = localMapStatsProvider.getLocalMapStatsImpl(name);
localMapStatsImpl.incrementOtherOperations();
}
}

代码示例来源:origin: com.hazelcast/hazelcast-all

@Override
protected void beforeResponse() {
final long latencyNanos = System.nanoTime() - startTimeNanos;
final MapService mapService = getService(MapService.SERVICE_NAME);
MapContainer mapCOntainer= mapService.getMapServiceContext().getMapContainer(getDistributedObjectName());
if (mapContainer.getMapConfig().isStatisticsEnabled()) {
mapService.getMapServiceContext().getLocalMapStatsProvider().getLocalMapStatsImpl(getDistributedObjectName())
.incrementPutLatencyNanos(latencyNanos);
}
}

代码示例来源:origin: hazelcast/hazelcast-jet

@Override
protected void beforeResponse() {
final long latencyNanos = System.nanoTime() - startTimeNanos;
final MapService mapService = getService(MapService.SERVICE_NAME);
MapContainer mapCOntainer= mapService.getMapServiceContext().getMapContainer(getDistributedObjectName());
if (mapContainer.getMapConfig().isStatisticsEnabled()) {
mapService.getMapServiceContext().getLocalMapStatsProvider().getLocalMapStatsImpl(getDistributedObjectName())
.incrementPutLatencyNanos(latencyNanos);
}
}

代码示例来源:origin: hazelcast/hazelcast-jet

@Override
protected void afterResponse() {
final MapService mapService = getService(MapService.SERVICE_NAME);
MapContainer mapCOntainer= mapService.getMapServiceContext().getMapContainer(parameters.name);
if (mapContainer.getMapConfig().isStatisticsEnabled()) {
LocalMapStatsProvider localMapStatsProvider = mapService.getMapServiceContext().getLocalMapStatsProvider();
localMapStatsProvider.getLocalMapStatsImpl(parameters.name).incrementOtherOperations();
}
}

推荐阅读
  • 本文详细介绍了Java中org.neo4j.helpers.collection.Iterators.single()方法的功能、使用场景及代码示例,帮助开发者更好地理解和应用该方法。 ... [详细]
  • 优化ListView性能
    本文深入探讨了如何通过多种技术手段优化ListView的性能,包括视图复用、ViewHolder模式、分批加载数据、图片优化及内存管理等。这些方法能够显著提升应用的响应速度和用户体验。 ... [详细]
  • 本文详细介绍了Java中org.eclipse.ui.forms.widgets.ExpandableComposite类的addExpansionListener()方法,并提供了多个实际代码示例,帮助开发者更好地理解和使用该方法。这些示例来源于多个知名开源项目,具有很高的参考价值。 ... [详细]
  • 本文详细介绍了Akka中的BackoffSupervisor机制,探讨其在处理持久化失败和Actor重启时的应用。通过具体示例,展示了如何配置和使用BackoffSupervisor以实现更细粒度的异常处理。 ... [详细]
  • 本文详细介绍了Java编程语言中的核心概念和常见面试问题,包括集合类、数据结构、线程处理、Java虚拟机(JVM)、HTTP协议以及Git操作等方面的内容。通过深入分析每个主题,帮助读者更好地理解Java的关键特性和最佳实践。 ... [详细]
  • 从 .NET 转 Java 的自学之路:IO 流基础篇
    本文详细介绍了 Java 中的 IO 流,包括字节流和字符流的基本概念及其操作方式。探讨了如何处理不同类型的文件数据,并结合编码机制确保字符数据的正确读写。同时,文中还涵盖了装饰设计模式的应用,以及多种常见的 IO 操作实例。 ... [详细]
  • 本文将介绍如何编写一些有趣的VBScript脚本,这些脚本可以在朋友之间进行无害的恶作剧。通过简单的代码示例,帮助您了解VBScript的基本语法和功能。 ... [详细]
  • Explore a common issue encountered when implementing an OAuth 1.0a API, specifically the inability to encode null objects and how to resolve it. ... [详细]
  • 1:有如下一段程序:packagea.b.c;publicclassTest{privatestaticinti0;publicintgetNext(){return ... [详细]
  • andr ... [详细]
  • 深入理解Java泛型:JDK 5的新特性
    本文详细介绍了Java泛型的概念及其在JDK 5中的应用,通过具体代码示例解释了泛型的引入、作用和优势。同时,探讨了泛型类、泛型方法和泛型接口的实现,并深入讲解了通配符的使用。 ... [详细]
  • ASP.NET MVC中Area机制的实现与优化
    本文探讨了在ASP.NET MVC框架中,如何通过Area机制有效地组织和管理大规模应用程序的不同功能模块。通过合理的文件夹结构和命名规则,开发人员可以更高效地管理和扩展项目。 ... [详细]
  • 在Java中,this是一个引用当前对象的关键字。如何通过this获取并显示其所指向的对象的属性和方法?本文详细解释了this的用法及其背后的原理。 ... [详细]
  • 本文介绍了如何利用JavaScript或jQuery来判断网页中的文本框是否处于焦点状态,以及如何检测鼠标是否悬停在指定的HTML元素上。 ... [详细]
  • Java 类成员初始化顺序与数组创建
    本文探讨了Java中类成员的初始化顺序、静态引入、可变参数以及finalize方法的应用。通过具体的代码示例,详细解释了这些概念及其在实际编程中的使用。 ... [详细]
author-avatar
MC_炽焰
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有