Package | Description |
---|---|
org.infinispan.persistence.cluster |
A
CacheLoader (not CacheWriter ) that polls other nodes in the cluster for state. |
org.infinispan.persistence.file |
Simple filesystem-based
CacheWriter implementation. |
org.infinispan.persistence.jdbc.stringbased |
JDBC CacheStore implementation which maps keys to strings.
|
org.infinispan.persistence.jpa |
JPA-based
AdvancedLoadWriteStore . |
org.infinispan.persistence.remote |
Hot Rod-based
AdvancedLoadWriteStore . |
org.infinispan.persistence.rest |
RESTful
AdvancedLoadWriteStore . |
org.infinispan.persistence.rocksdb |
RocksDB-based
AdvancedLoadWriteStore . |
org.infinispan.persistence.sifs |
Soft Index
AdvancedLoadWriteStore . |
org.infinispan.persistence.spi |
The Persistence SPI.
|
Modifier and Type | Class and Description |
---|---|
class |
ClusterLoader
Cache loader that consults other members in the cluster for values.
|
Modifier and Type | Class and Description |
---|---|
class |
SingleFileStore<K,V>
A filesystem-based implementation of a
AdvancedLoadWriteStore . |
Modifier and Type | Class and Description |
---|---|
class |
JdbcStringBasedStore<K,V>
AdvancedCacheLoader implementation that stores the entries in a database. |
Modifier and Type | Class and Description |
---|---|
class |
JpaStore<K,V>
NOTE: This store can return expired keys or entries on any given operation if
JpaStoreConfiguration.storeMetadata() was set to false. |
Modifier and Type | Class and Description |
---|---|
class |
RemoteStore<K,V>
Cache store that delegates the call to a infinispan cluster.
|
Modifier and Type | Class and Description |
---|---|
class |
RestStore<K,V>
Deprecated.
This cache store will be changed to only implement
CacheLoader |
Modifier and Type | Class and Description |
---|---|
class |
RocksDBStore<K,V> |
Modifier and Type | Class and Description |
---|---|
class |
SoftIndexFileStore
Local file-based cache store, optimized for write-through use with strong consistency guarantees
(ability to flush disk operations before returning from the store call).
|
Modifier and Type | Interface and Description |
---|---|
interface |
AdvancedCacheLoader<K,V>
A specialised extension of the
CacheLoader interface that allows processing parallel iteration over the
existing entries. |
interface |
AdvancedLoadWriteStore<K,V>
Advanced interface for interacting with an external store in a read-write mode.
|
interface |
ExternalStore<K,V>
Basic 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.
|
Copyright © 2020 JBoss, a division of Red Hat. All rights reserved.