Package | Description |
---|---|
com.caucho.distcache | |
com.caucho.distcache.jcache | |
com.caucho.distcache.jdbc | |
com.caucho.distcache.rest | |
com.caucho.distcache.websocket | |
com.caucho.server.distcache | |
javax.cache |
Modifier and Type | Method and Description |
---|---|
void |
AbstractCache.setCacheLoader(CacheLoader loader)
Sets the CacheLoader that the Cache can then use to populate
cache misses from a reference store (database).
|
void |
AbstractCache.setCacheReaderWriter(CacheLoader loader)
Sets the CacheLoader and CacheWriter which the Cache can then use
to populate cache misses from a reference store (database).
|
Modifier and Type | Method and Description |
---|---|
CacheBuilder<K,V> |
CacheBuilderImpl.setCacheLoader(CacheLoader<K,? extends V> cacheLoader) |
Modifier and Type | Class and Description |
---|---|
class |
JdbcCacheBacking
Manages backing for the cache map.
|
class |
JdbcCacheBackingImpl
Manages backing for the cache map.
|
Modifier and Type | Class and Description |
---|---|
class |
HttpRestCacheLoader
general websocket launching protocol
|
Modifier and Type | Class and Description |
---|---|
class |
TieredCacheLoader
general websocket launching protocol
|
Modifier and Type | Interface and Description |
---|---|
interface |
CacheBacking<K,V>
Extended cache loader
|
interface |
CacheLoaderExt<K,V>
Extended cache loader
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractCacheBacking<K,V>
Extended cache loader
|
class |
CacheLoaderAdapter<K,V>
Extended cache loader
|
Modifier and Type | Method and Description |
---|---|
CacheLoader |
CacheConfig.getCacheLoader()
The Cache will use a CacheLoader to populate cache misses.
|
Modifier and Type | Method and Description |
---|---|
void |
CacheConfig.setCacheLoader(CacheLoader cacheLoader)
Sets the CacheLoader that the Cache can then use to
populate cache misses for a reference store (database)
|
Constructor and Description |
---|
CacheLoaderAdapter(CacheLoader<K,V> loader) |
Modifier and Type | Field and Description |
---|---|
protected CacheLoader<K,? extends V> |
MutableConfiguration.cacheLoader |
Modifier and Type | Method and Description |
---|---|
CacheLoader<K,? extends V> |
MutableConfiguration.getCacheLoader() |
CacheLoader<K,? extends V> |
Configuration.getCacheLoader() |
Modifier and Type | Method and Description |
---|---|
MutableConfiguration<K,V> |
MutableConfiguration.setCacheLoader(CacheLoader<K,? extends V> loader) |
CacheBuilder<K,V> |
CacheBuilder.setCacheLoader(CacheLoader<K,? extends V> cacheLoader) |
Constructor and Description |
---|
MutableConfiguration(java.lang.Iterable<CacheEntryListenerRegistration<? super K,? super V>> regs,
CacheLoader<K,? extends V> cacheLoader,
CacheWriter<? super K,? super V> cacheWriter,
ExpiryPolicy<? super K,? super V> expiryPolicy,
boolean isReadThrough,
boolean isWriteThrough,
boolean isStatisticsEnabled,
boolean isStoreByValue,
boolean isTransactionsEnabled,
IsolationLevel txnIsolationLevel,
Mode txnMode) |