Uses of Interface
org.apache.ignite.cache.store.CacheStore
-
Packages that use CacheStore Package Description org.apache.ignite.cache.store Contains cache store interfaces.org.apache.ignite.cache.store.jdbc Contains reference JDBC-based cache store implementation.org.apache.ignite.configuration Contains configuration-related classes.org.apache.ignite.internal.processors.cache This package contain cache-related processors & persistence implementation.org.apache.ignite.internal.processors.cache.store org.apache.ignite.internal.processors.platform.dotnet -
-
Uses of CacheStore in org.apache.ignite.cache.store
Classes in org.apache.ignite.cache.store that implement CacheStore Modifier and Type Class Description classCacheLoadOnlyStoreAdapter<K,V,I>This adapter designed to support stores with bulk loading from stream-like source.classCacheStoreAdapter<K,V>Cache storage convenience adapter. -
Uses of CacheStore in org.apache.ignite.cache.store.jdbc
Classes in org.apache.ignite.cache.store.jdbc that implement CacheStore Modifier and Type Class Description classCacheAbstractJdbcStore<K,V>Implementation ofCacheStorebacked by JDBC.classCacheJdbcBlobStore<K,V>CacheStoreimplementation backed by JDBC.classCacheJdbcPojoStore<K,V>Implementation ofCacheStorebacked by JDBC and POJO via reflection. -
Uses of CacheStore in org.apache.ignite.configuration
Methods in org.apache.ignite.configuration that return types with arguments of type CacheStore Modifier and Type Method Description javax.cache.configuration.Factory<CacheStore<? super K,? super V>>CacheConfiguration. getCacheStoreFactory()Gets factory for underlying persistent storage for read-through and write-through operations.Method parameters in org.apache.ignite.configuration with type arguments of type CacheStore Modifier and Type Method Description CacheConfiguration<K,V>CacheConfiguration. setCacheStoreFactory(javax.cache.configuration.Factory<? extends CacheStore<? super K,? super V>> storeFactory)Sets factory for persistent storage for cache data. -
Uses of CacheStore in org.apache.ignite.internal.processors.cache
Classes in org.apache.ignite.internal.processors.cache that implement CacheStore Modifier and Type Class Description classCacheStoreBalancingWrapper<K,V>Cache store wrapper that ensures that there will be no more that one thread loading value from underlying store.Constructors in org.apache.ignite.internal.processors.cache with parameters of type CacheStore Constructor Description CacheStoreBalancingWrapper(CacheStore<K,V> delegate)CacheStoreBalancingWrapper(CacheStore<K,V> delegate, int loadAllThreshold) -
Uses of CacheStore in org.apache.ignite.internal.processors.cache.store
Classes in org.apache.ignite.internal.processors.cache.store that implement CacheStore Modifier and Type Class Description classGridCacheWriteBehindStore<K,V>Internal wrapper for aCacheStorethat enables write-behind logic.Fields in org.apache.ignite.internal.processors.cache.store declared as CacheStore Modifier and Type Field Description protected CacheStore<?,?>GridCacheStoreManagerAdapter. cfgStoreprotected CacheStore<Object,Object>GridCacheStoreManagerAdapter. storeMethods in org.apache.ignite.internal.processors.cache.store that return CacheStore Modifier and Type Method Description CacheStore<?,?>CacheStoreManager. configuredStore()CacheStore<?,?>GridCacheStoreManagerAdapter. configuredStore()CacheStore<Object,Object>CacheStoreManager. store()CacheStore<Object,Object>GridCacheStoreManagerAdapter. store()CacheStore<K,V>GridCacheWriteBehindStore. store()Methods in org.apache.ignite.internal.processors.cache.store with parameters of type CacheStore Modifier and Type Method Description voidCacheStoreManager. initialize(@Nullable CacheStore<?,?> cfgStore, Map<CacheStore,ThreadLocal> sesHolders)Initialize store manager.voidGridCacheStoreManagerAdapter. initialize(@Nullable CacheStore cfgStore, Map sesHolders)Initialize store manager.Method parameters in org.apache.ignite.internal.processors.cache.store with type arguments of type CacheStore Modifier and Type Method Description voidCacheStoreManager. initialize(@Nullable CacheStore<?,?> cfgStore, Map<CacheStore,ThreadLocal> sesHolders)Initialize store manager.Constructors in org.apache.ignite.internal.processors.cache.store with parameters of type CacheStore Constructor Description GridCacheWriteBehindStore(CacheStoreManager storeMgr, String igniteInstanceName, String cacheName, IgniteLogger log, CacheStore<K,V> store)Creates a write-behind cache store for the given store. -
Uses of CacheStore in org.apache.ignite.internal.processors.platform.dotnet
Classes in org.apache.ignite.internal.processors.platform.dotnet that implement CacheStore Modifier and Type Class Description classPlatformDotNetCacheStore<K,V>Wrapper for .NET cache store implementations.
-