|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Cache | |
org.sape.carbon.services.cache | The Cache Service is designed to cache frequently used data in a refreshable, high performance, thread-safe fashion. |
org.sape.carbon.services.cache.mru | This package contains all classes for defining and implementing Most Recently Used (MRU) caches. |
org.sape.carbon.services.cache.total | This package contains all classes for defining and implementing read-only and writable total caches. |
Uses of Cache in org.sape.carbon.services.cache |
Subinterfaces of Cache in org.sape.carbon.services.cache | |
interface |
MultiGetCache
Interface implemented by caches that can return multiple entries with on method call. |
Uses of Cache in org.sape.carbon.services.cache.mru |
Subinterfaces of Cache in org.sape.carbon.services.cache.mru | |
interface |
MRUCache
This interface represents caches that hold a limited number of items and remove older items or items that haven't been accessed in a while to make room for new items. |
Classes in org.sape.carbon.services.cache.mru that implement Cache | |
class |
AbstractMRUCache
Class which provides a generic "Most Recently Used" cache. |
class |
DefaultMRUCacheImpl
Extends AbsractMRUCache to provide the get method Copyright 2002 Sapient |
class |
MultiGetMRUCache
This class extends the AbstractMRUCache to add multi-get functionality. |
Uses of Cache in org.sape.carbon.services.cache.total |
Classes in org.sape.carbon.services.cache.total that implement Cache | |
class |
AbstractTotalCache
This is the base class for caches of data that load all of their contents into memory. |
class |
ReadOnlyCache
This Total Cache implementation is intended for fast reading of data which expires periodically as a whole. |
class |
WritableCache
The Total Cache implementation of the Cache interface is intended for access to data which expires periodically as a whole or which can be changed on the fly by clients. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |