|
SAP NetWeaver '04 | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use CacheException | |
| com.sapportals.wcm.service.cache | Provides a caching service. |
| com.sapportals.wcm.util.cache | Contains interfaces and classes for caches that are in memory or persistent. |
| Uses of CacheException in com.sapportals.wcm.service.cache |
| Methods in com.sapportals.wcm.service.cache that throw CacheException | |
ICache |
ICacheService.getCache(java.lang.String cacheID,
java.util.Properties properties)
Get a cache for the given ID (and given properties, if cache does not already exist): If no cache exists for the given ID, it will be created with the given properties. |
ICache |
ICacheService.getCache(java.lang.String cacheID)
Get a preconfigured cache (with properties taken from configuration). |
| Uses of CacheException in com.sapportals.wcm.util.cache |
| Methods in com.sapportals.wcm.util.cache that throw CacheException | |
void |
IClusterCacheArea.refresh(ICache cache)
Remove all expired entries from the given cache (does a cache.removeEntriesOlderThan(getLastClusterInvalidation())). |
void |
ICache.addEntry(ICacheEntry entry)
add a new entry to the cache |
void |
ICache.addEntry(java.lang.String key,
java.lang.Object object)
create a new entry and add it to the cache |
void |
ICache.addEntry(java.lang.String key,
java.lang.Object object,
int timeToLive)
create a new entry and add it to the cache |
void |
ICache.addEntryAutoDelay(java.lang.String key,
java.lang.Object object,
int timeToLive)
create a new entry and add it to the cache - on access the expiration is delayed by timeToLive |
void |
ICache.addEntry(java.lang.String key,
java.lang.Object object,
int timeToLive,
long size)
create a new entry and add it to the cache |
void |
ICache.addEntryAutoDelay(java.lang.String key,
java.lang.Object object,
int timeToLive,
long size)
create a new entry and add it to the cache - on access the expiration is delayed by timeToLive |
ICacheEntry |
ICache.getEntry(java.lang.String key)
get an entry from the cache |
boolean |
ICache.removeEntry(ICacheEntry entry)
remove an entry from the cache |
boolean |
ICache.removeEntry(java.lang.String key)
remove an entry from the cache |
boolean |
ICache.removeEntriesStartingWith(java.lang.String prefix)
remove all entries from the cache which's keys start with a specific prefix |
boolean |
ICache.removeEntriesOlderThan(long timestamp)
remove all entries from the cache with modification date older than the given timestamp. |
boolean |
ICache.containsEntry(java.lang.String key)
check, whether an entry with the key is stored in the cache |
java.util.Enumeration |
ICache.keys()
Deprecated. as of NW04. Use keySet() instead |
java.util.Set |
ICache.keySet()
Returns a setview on the current set of keys of all entries. |
CacheEntryList |
ICache.elements()
|
void |
ICache.clearCache()
remove all entries from the cache |
void |
ICache.refresh()
remove all expired entries |
static CacheFactory |
CacheFactory.getInstance()
|
ICache |
CacheFactory.getCache(java.lang.String cacheID)
|
ICache |
CacheFactory.getCache(java.lang.String configID,
java.lang.String cacheID)
|
ICache |
CacheFactory.getCache(java.lang.String cacheID,
boolean useDefault)
|
ICache |
CacheFactory.getCache(java.lang.String configID,
java.lang.String cacheID,
boolean useDefault)
|
ICache |
CacheFactory.getCache(java.lang.String cacheID,
java.util.Properties properties)
|
|
SAP NetWeaver '04 | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||