CacheConfiguration<AffinityKey, XObject> cfg = new
CacheConfiguration<>("CACHE_NAME");
cfg.setIndexedTypes(AffinityKey.class, XObject.class);
cfg.setCacheMode(CacheMode.PARTITIONED);
cfg.setName("CACHE_NAME");
cfg5.setBackups(1);
ignite.getOrCreateCache(cfg);
1. i used the above cache Configuration .
2. put message of 50,000 counts in cache.
3. remove cache 300 counts per one second
4. All caches have been controlled. (cache -scan -c=CACHE_NAME) : confirm
empty
5. However, if we stop and restart the server node after
6. Some of the cache survives again.
in conclusion , Perhaps it is estimated that the remote node's cache cleanup
unsafe.
--
View this message in context:
http://apache-ignite-users.70518.x6.nabble.com/remove-cache-on-high-speed-tp2039p2042.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.