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. -
-
Uses of CacheStore in org.apache.ignite.cache.store
Classes in org.apache.ignite.cache.store that implement CacheStore Modifier and Type Class Description class
CacheLoadOnlyStoreAdapter<K,V,I>
This adapter designed to support stores with bulk loading from stream-like source.class
CacheStoreAdapter<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 class
CacheAbstractJdbcStore<K,V>
Implementation ofCacheStore
backed by JDBC.class
CacheJdbcBlobStore<K,V>
CacheStore
implementation backed by JDBC.class
CacheJdbcPojoStore<K,V>
Implementation ofCacheStore
backed 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.
-