Package | Description |
---|---|
org.infinispan.lucene.cacheloader | |
org.infinispan.persistence |
This package contains stores, which are used for overflow or persistence.
|
org.infinispan.persistence.async | |
org.infinispan.persistence.file |
Simple filesystem-based
CacheStore implementation. |
org.infinispan.persistence.jdbc.binary |
This JDBC CacheStore implementation is optimized for storing binary (non-String)
keys in the cache.
|
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.manager | |
org.infinispan.persistence.remote | |
org.infinispan.persistence.spi |
Modifier and Type | Class and Description |
---|---|
class |
LuceneCacheLoader
A CacheLoader meant to load Lucene index(es) from filesystem based Lucene index(es).
|
Modifier and Type | Method and Description |
---|---|
static int |
PersistenceUtil.count(AdvancedCacheLoader acl,
AdvancedCacheLoader.KeyFilter filter) |
static Set<InternalCacheEntry> |
PersistenceUtil.toEntrySet(AdvancedCacheLoader acl,
AdvancedCacheLoader.KeyFilter filter,
InternalEntryFactory ief) |
static Set<Object> |
PersistenceUtil.toKeySet(AdvancedCacheLoader acl,
AdvancedCacheLoader.KeyFilter filter) |
Modifier and Type | Class and Description |
---|---|
class |
AdvancedAsyncCacheLoader |
Modifier and Type | Class and Description |
---|---|
class |
SingleFileStore
A filesystem-based implementation of a
CacheLoader . |
Modifier and Type | Class and Description |
---|---|
class |
JdbcBinaryStore
AdvancedLoadWriteStore implementation that will store all the buckets as rows
in database, each row corresponding to a bucket. |
Modifier and Type | Class and Description |
---|---|
class |
JdbcMixedStore
Cache store that combines functionality of
JdbcBinaryStore and JdbcStringBasedStore . |
Modifier and Type | Class and Description |
---|---|
class |
JdbcStringBasedStore
AdvancedCacheLoader implementation that stores the entries in a database. |
Modifier and Type | Method and Description |
---|---|
AdvancedCacheLoader |
PersistenceManager.getStateTransferProvider()
Returns the store one configured with fetch persistent state, or null if none exist.
|
AdvancedCacheLoader |
PersistenceManagerImpl.getStateTransferProvider() |
Modifier and Type | Class and Description |
---|---|
class |
RemoteStore
Cache store that delegates the call to a infinispan cluster.
|
Modifier and Type | Interface and Description |
---|---|
interface |
AdvancedLoadWriteStore<K,V>
Advanced interface for interacting with an external store in a read-write mode.
|
Copyright © 2016 JBoss, a division of Red Hat. All rights reserved.