Hi slava,

thanks for your comments. I am creating the cache directly using JCache API
below:
-------------------
    @Bean
    public JCacheManagerCustomizer cacheManagerCustomizer() {
        return cm -> {
            Configuration<Object, Object> cacheConfiguration =
createCacheConfiguration();
            
            if (cm.getCache("users") == null) 
                cm.createCache("users", cacheConfiguration);
            if (cm.getCache("cannedReports") == null)
                cm.createCache("cannedReports",
createCustomCacheConfiguration());
        };
    } 
----------------------
Even though I have created these caches using JCache API ( and not through
Ignite API), when I restart my application, cache.getCacheManager() is
returning null within JCacheMetrics constructor. This is a blocker.

Any help is appreciated.



--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Reply via email to