[
https://issues.apache.org/jira/browse/IGNITE-5492?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16051719#comment-16051719
]
Sergey Chugunov commented on IGNITE-5492:
-----------------------------------------
Hello [~roman_s],
I did a review on your [pull
request|https://github.com/apache/ignite/pull/2133], please see my comment
there.
Thanks,
Sergey.
> Local cache metrcis is broken
> -----------------------------
>
> Key: IGNITE-5492
> URL: https://issues.apache.org/jira/browse/IGNITE-5492
> Project: Ignite
> Issue Type: Bug
> Components: cache
> Affects Versions: 2.0
> Reporter: Alexey Kuznetsov
> Assignee: Dmitriy Govorukhin
> Fix For: 2.1
>
>
> Reproducer:
> IgniteConfiguration cfg = new IgniteConfiguration();
> Ignite ignite = Ignition.start(cfg);
> CacheConfiguration<String, String> locCacheCfg = new
> CacheConfiguration<>("local");
> locCacheCfg.setCacheMode(CacheMode.LOCAL);
> locCacheCfg.setStatisticsEnabled(true);
> IgniteCache locCache = ignite.getOrCreateCache(locCacheCfg);
> assert(locCache.get("ZZZ") == null)
> assert(locCache.localMetrics().getCacheMisses == 1)
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)