Is it possible to view content stored in HazelcastLocalCacheRegionFactory? For non-local cache regions are stored as distributed maps so it is possible to view their content like this (or via JMX):
Cache cache = springCacheManager.getCache(cacheName);
Map<Object, Object> cacheMap = (Map<Object, Object>)cache.getNativeCache();
JMX also doesn't show content stored in HazelcastLocalCacheRegionFactory. Thank you in advance.