Package com.hazelcast.cache
Class CacheUtil
java.lang.Object
com.hazelcast.cache.CacheUtil
Utility class for various cache related operations to be used by our internal structure and end user.
- Since:
- 3.7
-
Method Summary
Modifier and TypeMethodDescriptionstatic String
getDistributedObjectName
(String cacheName) Convenience method to obtain the name of Hazelcast distributed object corresponding to the cache identified by the givencacheName
, assumingnull URI
andClassLoader
prefixes.static String
getDistributedObjectName
(String cacheName, URI uri, ClassLoader classLoader) Convenience method to obtain the name of Hazelcast distributed object corresponding to the cache identified by the given arguments.static String
getPrefix
(URI uri, ClassLoader classLoader) Gets the prefix of cache name without Hazelcast'sCacheManager
specific prefixHazelcastCacheManager.CACHE_MANAGER_PREFIX
.static String
getPrefixedCacheName
(String name, URI uri, ClassLoader classLoader) Gets the cache name with prefix but without Hazelcast'sCacheManager
specific prefixHazelcastCacheManager.CACHE_MANAGER_PREFIX
.
-
Method Details
-
getPrefix
Gets the prefix of cache name without Hazelcast'sCacheManager
specific prefixHazelcastCacheManager.CACHE_MANAGER_PREFIX
.- Parameters:
uri
- an implementation specific URI for the Hazelcast'sCacheManager
(null means use Hazelcast'sCachingProvider.getDefaultURI()
)classLoader
- theClassLoader
to use for the Hazelcast'sCacheManager
(null means use Hazelcast'sCachingProvider.getDefaultClassLoader()
)- Returns:
- the prefix of cache name without Hazelcast's
CacheManager
specific prefixHazelcastCacheManager.CACHE_MANAGER_PREFIX
-
getPrefixedCacheName
Gets the cache name with prefix but without Hazelcast'sCacheManager
specific prefixHazelcastCacheManager.CACHE_MANAGER_PREFIX
.- Parameters:
name
- the simple name of the cache without any prefixuri
- an implementation specific URI for the Hazelcast'sCacheManager
(null means use Hazelcast'sCachingProvider.getDefaultURI()
)classLoader
- theClassLoader
to use for the Hazelcast'sCacheManager
(null means use Hazelcast'sCachingProvider.getDefaultClassLoader()
)- Returns:
- the cache name with prefix but without Hazelcast's
CacheManager
specific prefixHazelcastCacheManager.CACHE_MANAGER_PREFIX
.
-
getDistributedObjectName
Convenience method to obtain the name of Hazelcast distributed object corresponding to the cache identified by the givencacheName
, assumingnull URI
andClassLoader
prefixes. This is equivalent to invokinggetDistributedObjectName(String, URI, ClassLoader)
withnull
passed asURI
andClassLoader
arguments.- Parameters:
cacheName
- the simple name of the cache without any prefix- Returns:
- the name of the
ICache
distributed object corresponding to given cacheName, assuming null URI & class loader prefixes. - See Also:
-
getDistributedObjectName
Convenience method to obtain the name of Hazelcast distributed object corresponding to the cache identified by the given arguments. The distributed object name returned by this method can be used to obtain the cache as a HazelcastICache
as shown in this example:HazelcastInstance hz = Hazelcast.newHazelcastInstance(); // Obtain Cache via JSR-107 API CachingProvider hazelcastCachingProvider = Caching.getCachingProvider( "com.hazelcast.cache.HazelcastCachingProvider", HazelcastCachingProvider.class.getClassLoader()); CacheManager cacheManager = hazelcastCachingProvider.getCacheManager(); Cache testCache = cacheManager.createCache("test", new MutableConfiguration<String, String>()); // URI and ClassLoader are null, since we created this cache with the default CacheManager, // otherwise we should pass the owning CacheManager's URI & ClassLoader as arguments. String distributedObjectName = CacheUtil.asDistributedObjectName("test", null, null); // Obtain a reference to the backing ICache via HazelcastInstance.getDistributedObject. // You may invoke this on any member of the cluster. ICache<String, String> distributedObjectCache = (ICache) hz.getDistributedObject( ICacheService.SERVICE_NAME, distributedObjectName);
- Parameters:
cacheName
- the simple name of the cache without any prefixuri
- an implementation specific URI for the Hazelcast'sCacheManager
(null means use Hazelcast'sCachingProvider.getDefaultURI()
)classLoader
- theClassLoader
to use for the Hazelcast'sCacheManager
(null means use Hazelcast'sCachingProvider.getDefaultClassLoader()
)- Returns:
- the name of the
ICache
distributed object corresponding to given arguments.
-