Package | Description |
---|---|
org.infinispan.eviction |
Classes related to eviction.
|
org.infinispan.persistence.cluster |
A
CacheLoader (not CacheWriter ) that polls other nodes in the cluster for state. |
org.infinispan.persistence.jdbc.binary |
This JDBC CacheStore implementation is optimized for storing binary (non-String)
keys in the cache.
|
org.infinispan.persistence.jdbc.common |
The common classes for JDBC store (binary, string and mixed)
|
org.infinispan.persistence.jdbc.mixed |
This is a delegating CacheStore implementation that delegates either to a binary
or String based JDBC cache store depending on the key used.
|
org.infinispan.persistence.jdbc.stringbased |
This JDBC CacheStore implementation is optimized for storing String
keys in the cache.
|
org.infinispan.persistence.jpa |
JPA-based
AdvancedLoadWriteStore |
org.infinispan.persistence.remote |
HotRod-based
AdvancedLoadWriteStore |
org.infinispan.persistence.spi |
The Persistence SPI
|
Modifier and Type | Method and Description |
---|---|
void |
PassivationManager.passivateAll() |
Modifier and Type | Method and Description |
---|---|
MarshalledEntry |
ClusterLoader.load(Object key) |
Modifier and Type | Method and Description |
---|---|
void |
JdbcBinaryStore.prepareWithModifications(Transaction transaction,
BatchModification batchModification) |
Modifier and Type | Method and Description |
---|---|
void |
AbstractJdbcStore.initializeConnectionFactory(ConnectionFactory connectionFactory)
Keeps a reference to the connection factory for further use.
|
protected ByteBuffer |
AbstractJdbcStore.marshall(Object obj) |
protected <T> T |
AbstractJdbcStore.unmarshall(InputStream inputStream) |
Modifier and Type | Method and Description |
---|---|
void |
JdbcMixedStore.prepareWithModifications(Transaction transaction,
BatchModification batchModification) |
Modifier and Type | Method and Description |
---|---|
void |
JdbcStringBasedStore.prepareWithModifications(Transaction transaction,
BatchModification batchModification) |
Modifier and Type | Class and Description |
---|---|
class |
JpaStoreException |
Modifier and Type | Method and Description |
---|---|
void |
RemoteStore.clear() |
boolean |
RemoteStore.contains(Object key) |
boolean |
RemoteStore.delete(Object key) |
MarshalledEntry |
RemoteStore.load(Object key) |
void |
RemoteStore.start() |
void |
RemoteStore.stop() |
void |
RemoteStore.write(MarshalledEntry entry) |
Modifier and Type | Method and Description |
---|---|
void |
TransactionalCacheWriter.prepareWithModifications(Transaction transaction,
BatchModification batchModification)
Write modifications to the store in the prepare phase, as this is the only way we know the FINAL values of the entries.
|
Copyright © 2018 JBoss, a division of Red Hat. All rights reserved.