/** {@inheritDoc} */ @Override protected GridCacheConfiguration cacheConfiguration(String gridName) throws Exception { GridCacheConfiguration cfg = super.cacheConfiguration(gridName); cfg.setCacheMode(PARTITIONED); cfg.setBackups(1); cfg.setWriteSynchronizationMode(FULL_SYNC); return cfg; }
/** * @param cacheName Cache name. * @return Cache configuration. * @throws Exception In case of error. */ private GridCacheConfiguration cacheConfiguration(@Nullable String cacheName) throws Exception { GridCacheConfiguration cfg = defaultCacheConfiguration(); cfg.setAtomicityMode(TRANSACTIONAL); cfg.setDistributionMode(NEAR_PARTITIONED); if (cacheName == null) cfg.setCacheMode(LOCAL); else if (PARTITIONED_CACHE_NAME.equals(cacheName)) { cfg.setCacheMode(PARTITIONED); cfg.setBackups(0); } else cfg.setCacheMode(REPLICATED); cfg.setName(cacheName); cfg.setWriteSynchronizationMode( REPLICATED_ASYNC_CACHE_NAME.equals(cacheName) ? FULL_ASYNC : FULL_SYNC); return cfg; }