Package | Description |
---|---|
com.caucho.cloud.globalcache | |
com.caucho.distcache | |
com.caucho.server.distcache |
Modifier and Type | Method and Description |
---|---|
ExtCacheEntry<?,?> |
GlobalCache.getExtCacheEntry() |
ExtCacheEntry |
AbstractGlobalCache.getExtCacheEntry() |
Modifier and Type | Method and Description |
---|---|
ExtCacheEntry |
AbstractCache.getExtCacheEntry(HashKey key) |
ExtCacheEntry<K,V> |
ObjectCache.getExtCacheEntry(K key)
Returns the extended entry
|
ExtCacheEntry |
AbstractCache.getExtCacheEntry(java.lang.Object key)
Returns the cache entry for the object with the given key.
|
ExtCacheEntry<?,?> |
ByteStreamCache.getExtCacheEntry(java.lang.Object key)
Returns the cache entry for the object with the given key.
|
ExtCacheEntry |
AbstractCache.getLiveCacheEntry(java.lang.Object key) |
ExtCacheEntry<K,V> |
ObjectCache.getStatCacheEntry(K key) |
ExtCacheEntry |
AbstractCache.getStatCacheEntry(java.lang.Object key) |
ExtCacheEntry |
AbstractCache.peekExtCacheEntry(java.lang.Object key)
Returns the cache entry for the object with the given key.
|
ExtCacheEntry<?,?> |
ByteStreamCache.peekExtCacheEntry(java.lang.Object key)
Returns the cache entry for the object with the given key, without
triggering a load.
|
ExtCacheEntry |
AbstractCache.put(java.lang.Object key,
java.io.InputStream is,
long accessedExpireTimeout,
long modifiedExpireTimeout)
Puts a new item in the cache with a custom idle
timeout (used for sessions).
|
ExtCacheEntry<?,?> |
ByteStreamCache.put(java.lang.Object key,
java.io.InputStream is,
long accessedExpireTimeout,
long modifiedExpireTimeout)
Puts a new item in the cache.
|
ExtCacheEntry |
AbstractCache.put(java.lang.Object key,
java.io.InputStream is,
long accessedExpireTimeout,
long modifiedExpireTimeout,
int userFlags)
Puts a new item in the cache with a custom idle
timeout (used for sessions).
|
ExtCacheEntry<?,?> |
ByteStreamCache.put(java.lang.Object key,
java.io.InputStream is,
long accessedExpireTimeout,
long modifiedExpireTimeout,
int flags)
Puts a new item in the cache.
|
ExtCacheEntry |
AbstractCache.put(java.lang.Object key,
java.io.InputStream is,
long accessedExpireTimeout,
long modifiedExpireTimeout,
long lastAccessTime,
long lastModifiedTime)
Puts a new item in the cache with a custom idle
timeout (used for sessions).
|
ExtCacheEntry<?,?> |
ByteStreamCache.put(java.lang.Object key,
java.io.InputStream is,
long accessedExpireTimeout,
long modifiedExpireTimeout,
long accessTime,
long modifiedTime)
Puts a new item in the cache.
|
Modifier and Type | Class and Description |
---|---|
class |
ExtCacheEntryFacade
An entry in the cache map
|
Modifier and Type | Method and Description |
---|---|
ExtCacheEntry |
CacheImpl.getExtCacheEntry(HashKey key) |
ExtCacheEntry |
CacheImpl.getExtCacheEntry(java.lang.Object key)
Returns the cache entry for the object with the given key.
|
ExtCacheEntry |
CacheImpl.getLiveCacheEntry(java.lang.Object key)
Returns the entry for the given key, returning the live item.
|
ExtCacheEntry |
CacheImpl.getStatCacheEntry(java.lang.Object key) |
ExtCacheEntry |
CacheImpl.peekExtCacheEntry(java.lang.Object key)
Returns the cache entry for the object with the given key.
|
ExtCacheEntry |
CacheImpl.put(java.lang.Object key,
java.io.InputStream is,
long accessedExpireTimeout,
long modifiedExpireTimeout)
Puts a new item in the cache with a custom idle
timeout (used for sessions).
|
ExtCacheEntry |
CacheImpl.put(java.lang.Object key,
java.io.InputStream is,
long accessedExpireTimeout,
long modifiedExpireTimeout,
int flags)
Puts a new item in the cache with a custom idle
timeout (used for sessions).
|
ExtCacheEntry |
CacheImpl.put(java.lang.Object key,
java.io.InputStream is,
long accessedExpireTimeout,
long modifiedExpireTimeout,
long lastAccessTime,
long lastModifiedTime)
Puts a new item in the cache with a custom idle
timeout (used for sessions).
|