Yes they are created using JAVA API. The JAVA version is 1.8 and please find
below the code we used to create and get the caches. Thanks.
private IgniteCache<?, ?> getIgniteCache(String cacheName, String
groupName){
CacheConfiguration cacheCfg = new CacheConfiguration();
cacheCfg.setName(cacheName);
cacheCfg.setBackups(0);
cacheCfg.setCacheMode(CacheMode.REPLICATED);
cacheCfg.setGroupName(groupName);
cacheCfg.setAtomicityMode(CacheAtomicityMode.TRANSACTIONAL);
return this.ignite.getOrCreateCache(cacheCfg);
}
--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/