Uses of Interface
org.infinispan.persistence.spi.CacheWriter
-
Packages that use CacheWriter Package Description org.infinispan.persistence.async org.infinispan.persistence.file Simple filesystem-basedCacheWriterimplementation.org.infinispan.persistence.jdbc.stringbased JDBC CacheStore implementation which maps keys to strings.org.infinispan.persistence.jpa JPA-basedAdvancedLoadWriteStore.org.infinispan.persistence.manager Implementations of thePersistenceManagerinterface, which define the logic of how infinispan interacts with external stores.org.infinispan.persistence.remote Hot Rod-basedAdvancedLoadWriteStore.org.infinispan.persistence.rest RESTfulAdvancedLoadWriteStore.org.infinispan.persistence.rocksdb RocksDB-basedAdvancedLoadWriteStore.org.infinispan.persistence.sifs Soft IndexAdvancedLoadWriteStore.org.infinispan.persistence.spi The Persistence SPI.org.infinispan.persistence.support -
-
Uses of CacheWriter in org.infinispan.persistence.async
Classes in org.infinispan.persistence.async that implement CacheWriter Modifier and Type Class Description classAdvancedAsyncCacheWriterclassAsyncCacheWriterThe AsyncCacheWriter is a delegating CacheStore that buffers changes and writes them asynchronously to the underlying CacheStore.Constructors in org.infinispan.persistence.async with parameters of type CacheWriter Constructor Description AdvancedAsyncCacheWriter(CacheWriter delegate)AsyncCacheWriter(CacheWriter delegate) -
Uses of CacheWriter in org.infinispan.persistence.file
Classes in org.infinispan.persistence.file that implement CacheWriter Modifier and Type Class Description classSingleFileStore<K,V>A filesystem-based implementation of aAdvancedLoadWriteStore. -
Uses of CacheWriter in org.infinispan.persistence.jdbc.stringbased
Classes in org.infinispan.persistence.jdbc.stringbased that implement CacheWriter Modifier and Type Class Description classJdbcStringBasedStore<K,V>AdvancedCacheLoaderimplementation that stores the entries in a database. -
Uses of CacheWriter in org.infinispan.persistence.jpa
Classes in org.infinispan.persistence.jpa that implement CacheWriter Modifier and Type Class Description classJpaStore<K,V>NOTE: This store can return expired keys or entries on any given operation ifJpaStoreConfiguration.storeMetadata()was set to false. -
Uses of CacheWriter in org.infinispan.persistence.manager
Methods in org.infinispan.persistence.manager that return types with arguments of type CacheWriter Modifier and Type Method Description java.util.List<CacheWriter>PersistenceManagerImpl. getAllTxWriters()java.util.List<CacheWriter>PersistenceManagerImpl. getAllWriters()Methods in org.infinispan.persistence.manager with parameters of type CacheWriter Modifier and Type Method Description protected AsyncCacheWriterPersistenceManagerImpl. createAsyncWriter(CacheWriter writer) -
Uses of CacheWriter in org.infinispan.persistence.remote
Classes in org.infinispan.persistence.remote that implement CacheWriter Modifier and Type Class Description classRemoteStore<K,V>Cache store that delegates the call to a infinispan cluster. -
Uses of CacheWriter in org.infinispan.persistence.rest
Classes in org.infinispan.persistence.rest that implement CacheWriter Modifier and Type Class Description classRestStore<K,V>Deprecated.This cache store will be changed to only implementCacheLoader -
Uses of CacheWriter in org.infinispan.persistence.rocksdb
Classes in org.infinispan.persistence.rocksdb that implement CacheWriter Modifier and Type Class Description classRocksDBStore<K,V> -
Uses of CacheWriter in org.infinispan.persistence.sifs
Classes in org.infinispan.persistence.sifs that implement CacheWriter Modifier and Type Class Description classSoftIndexFileStoreLocal file-based cache store, optimized for write-through use with strong consistency guarantees (ability to flush disk operations before returning from the store call). -
Uses of CacheWriter in org.infinispan.persistence.spi
Subinterfaces of CacheWriter in org.infinispan.persistence.spi Modifier and Type Interface Description interfaceAdvancedCacheExpirationWriter<K,V>Defines functionality for advanced expiration techniques.interfaceAdvancedCacheWriter<K,V>Defines advanced functionality for persisting data to an external storage.interfaceAdvancedLoadWriteStore<K,V>Advanced interface for interacting with an external store in a read-write mode.interfaceExternalStore<K,V>Basic interface for interacting with an external store in a read-write mode.interfaceFlagAffectedStore<K,V>Implemented by stores that can skip writes based on certain flags present in the invocation.interfaceSegmentedAdvancedLoadWriteStore<K,V>An interface implementing bothAdvancedCacheWriterandAdvancedCacheLoaderas well as overrides of those methods that can be optimized when a segment is already known for the key or a subset of segments are to be used instead of the entire store.interfaceTransactionalCacheWriter<K,V>Defines the functionality of a transactional store. -
Uses of CacheWriter in org.infinispan.persistence.support
Classes in org.infinispan.persistence.support that implement CacheWriter Modifier and Type Class Description classAbstractSegmentedAdvancedLoadWriteStore<K,V>Abstract segment loader writer that implements all the single key non segmented methods by invoking the segmented equivalent by passing in the segment returned from invokingAbstractSegmentedAdvancedLoadWriteStore.getKeyMapper().classAdvancedSingletonCacheWriterDeprecated.this writer will be removed in 10.0.classComposedSegmentedLoadWriteStore<K,V,T extends AbstractSegmentedStoreConfiguration>Segmented store that creates multiple inner stores for each segment.classDelegatingCacheWriterclassSingletonCacheWriterDeprecated.this writer will be removed in 10.0.Fields in org.infinispan.persistence.support declared as CacheWriter Modifier and Type Field Description protected CacheWriterDelegatingCacheWriter. actualMethods in org.infinispan.persistence.support that return CacheWriter Modifier and Type Method Description CacheWriterDelegatingCacheWriter. undelegate()Constructors in org.infinispan.persistence.support with parameters of type CacheWriter Constructor Description AdvancedSingletonCacheWriter(CacheWriter actual, SingletonStoreConfiguration singletonConfiguration)Deprecated.DelegatingCacheWriter(CacheWriter actual)SingletonCacheWriter(CacheWriter actual, SingletonStoreConfiguration singletonConfiguration)Deprecated.
-