Uses of Interface
org.infinispan.persistence.spi.ExternalStore
-
Packages that use ExternalStore Package Description org.infinispan.persistence.file Simple filesystem-basedCacheWriter
implementation.org.infinispan.persistence.jdbc.stringbased JDBC CacheStore implementation which maps keys to strings.org.infinispan.persistence.jpa JPA-basedAdvancedLoadWriteStore
.org.infinispan.persistence.leveldb org.infinispan.persistence.remote Hot Rod-basedAdvancedLoadWriteStore
.org.infinispan.persistence.rest RESTfulAdvancedLoadWriteStore
.org.infinispan.persistence.rocksdb org.infinispan.persistence.spi The Persistence SPI.org.infinispan.persistence.support -
-
Uses of ExternalStore in org.infinispan.persistence.file
Classes in org.infinispan.persistence.file that implement ExternalStore Modifier and Type Class Description class
SingleFileStore<K,V>
A filesystem-based implementation of aAdvancedLoadWriteStore
. -
Uses of ExternalStore in org.infinispan.persistence.jdbc.stringbased
Classes in org.infinispan.persistence.jdbc.stringbased that implement ExternalStore Modifier and Type Class Description class
JdbcStringBasedStore<K,V>
AdvancedCacheLoader
implementation that stores the entries in a database. -
Uses of ExternalStore in org.infinispan.persistence.jpa
Classes in org.infinispan.persistence.jpa that implement ExternalStore Modifier and Type Class Description class
JpaStore<K,V>
NOTE: This store can return expired keys or entries on any given operation ifJpaStoreConfiguration.storeMetadata()
was set to false. -
Uses of ExternalStore in org.infinispan.persistence.leveldb
Classes in org.infinispan.persistence.leveldb that implement ExternalStore Modifier and Type Class Description class
LevelDBStore
Deprecated.Use theRocksDBStore
instead -
Uses of ExternalStore in org.infinispan.persistence.remote
Classes in org.infinispan.persistence.remote that implement ExternalStore Modifier and Type Class Description class
RemoteStore<K,V>
Cache store that delegates the call to a infinispan cluster. -
Uses of ExternalStore in org.infinispan.persistence.rest
Classes in org.infinispan.persistence.rest that implement ExternalStore Modifier and Type Class Description class
RestStore<K,V>
Deprecated.This cache store will be changed to only implementCacheLoader
-
Uses of ExternalStore in org.infinispan.persistence.rocksdb
Classes in org.infinispan.persistence.rocksdb with annotations of type with type parameters of type that implement declared as with annotations of type with type parameters of type with annotations of type with annotations of type with type parameters of type that return that return types with arguments of type with parameters of type with type arguments of type that throw with annotations of type with annotations of type with parameters of type with type arguments of type that throw ExternalStore Modifier and Type Class Description class
org.infinispan.persistence.rocksdb.RocksDBStore<K extends Object,V extends Object>
-
Uses of ExternalStore in org.infinispan.persistence.spi
Subinterfaces of ExternalStore in org.infinispan.persistence.spi Modifier and Type Interface Description interface
AdvancedLoadWriteStore<K,V>
Advanced interface for interacting with an external store in a read-write mode.interface
FlagAffectedStore<K,V>
Implemented by stores that can skip writes based on certain flags present in the invocation.interface
SegmentedAdvancedLoadWriteStore<K,V>
An interface implementing bothAdvancedCacheWriter
andAdvancedCacheLoader
as 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. -
Uses of ExternalStore in org.infinispan.persistence.support
Classes in org.infinispan.persistence.support that implement ExternalStore Modifier and Type Class Description class
AbstractSegmentedAdvancedLoadWriteStore<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()
.class
ComposedSegmentedLoadWriteStore<K,V,T extends AbstractSegmentedStoreConfiguration>
Segmented store that creates multiple inner stores for each segment.
-