You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@ignite.apache.org by "Roman Shtykh (JIRA)" <ji...@apache.org> on 2017/06/15 06:07:00 UTC

[jira] [Commented] (IGNITE-5492) Local cache metrcis is broken

    [ https://issues.apache.org/jira/browse/IGNITE-5492?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16050039#comment-16050039 ] 

Roman Shtykh commented on IGNITE-5492:
--------------------------------------

{{GridCacheAbstractMetricsSelfTest#testMissesOnEmptyCache}} says it is related to https://issues.apache.org/jira/browse/IGNITE-4536. I wonder why that issue is set to _RESOLVED_ then...

> 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
>             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)