Uses of Interface
uk.gov.gchq.gaffer.cache.ICacheService
-
Packages that use ICacheService Package Description uk.gov.gchq.gaffer.cache Classes for the Gaffer cache service.uk.gov.gchq.gaffer.cache.impl The Hazelcast Gaffer cache service implementation. -
-
Uses of ICacheService in uk.gov.gchq.gaffer.cache
Methods in uk.gov.gchq.gaffer.cache that return ICacheService Modifier and Type Method Description static ICacheService
CacheServiceLoader. getDefaultService()
Get the default cache service object.static ICacheService
CacheServiceLoader. getService()
Deprecated.Cache services should instead be fetched by name usingCacheServiceLoader.getService(String)
, or by usingCacheServiceLoader.getDefaultService()
.static ICacheService
CacheServiceLoader. getService(String serviceName)
Get the cache service identified by the supplied name. -
Uses of ICacheService in uk.gov.gchq.gaffer.cache.impl
Classes in uk.gov.gchq.gaffer.cache.impl that implement ICacheService Modifier and Type Class Description class
HashMapCacheService
Simple implementation of theICacheService
interface which uses aHashMapCache
as the cache implementation.class
HazelcastCacheService
Implementation of theICacheService
interface which uses aHazelcastCache
as the cache implementation.class
JcsCacheService
Implementation of theICacheService
interface which uses aJcsCache
as the cache implementation.
-