Hi, this is basically the command that I am using to clear and destroy the
cache from the server that is deployed on the PCF server.
But memory does not free, even after I do this.
private clearCacheByName(String item) {
if (ignite.cacheNames().contains(item)) {
ignite.cache(item).clear();
ignite.cache(item).destroy();
ignite.destroyCache(item);
}
}
When I call ignite.cacheNames(), that specified cache is gone, but memory is
not freed from the PCF server that runs Ignite.
--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/