|
ehcache | |||||||||
PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES All Classes |
See:
Description
Interface Summary | |
---|---|
CacheManagerPeerListener | A listener for updates, which controls remote cache peers. |
CacheManagerPeerProvider | Provides a discovery service to locate CachePeer listener peers for a Cache. |
CachePeer | An interface for a cache peer to which updates are made remotely. |
CacheReplicator | Replicates cache entries to peers of the CacheManager |
Class Summary | |
---|---|
CacheManagerPeerListenerFactory | An abstract factory for creating cache manager peer listeners. |
CacheManagerPeerProviderFactory | An abstract factory for creating peers. |
ConfigurableRMIClientSocketFactory | Default socket timeouts are unlikely to be suitable for cache replication. |
EventMessage | An Event Message, in respect of a particular cache. |
LegacyEventMessage | An Event Message, in respect of a particular cache. |
ManualRMICacheManagerPeerProvider | A provider of Peer RMI addresses based off manual configuration. |
MulticastKeepaliveHeartbeatReceiver | Receives heartbeats from any MulticastKeepaliveHeartbeatSender s out there. |
MulticastKeepaliveHeartbeatSender | Sends heartbeats to a multicast group containing a compressed list of URLs. |
MulticastRMICacheManagerPeerProvider | A peer provider which discovers peers using Multicast. |
MulticastRMICacheManagerPeerProvider.CachePeerEntry | Entry containing a looked up CachePeer and date |
RMIAsynchronousCacheReplicator | Listens to CacheManager and Cache events and propagates those to
CachePeer peers of the Cache asynchronously. |
RMIBootstrapCacheLoader | Loads Elements from a random Cache Peer |
RMIBootstrapCacheLoaderFactory | A factory to create a configured RMIBootstrapCacheLoader |
RMICacheManagerPeerListener | A cache server which exposes available cache operations remotely through RMI. |
RMICacheManagerPeerListenerFactory | Builds a listener based on RMI. |
RMICacheManagerPeerProvider | A provider of Peer RMI addresses. |
RMICacheManagerPeerProviderFactory | Builds a factory based on RMI |
RMICachePeer | An RMI based implementation of CachePeer . |
RMICacheReplicatorFactory | Creates an RMICacheReplicator using properties. |
RmiEventMessage | |
RMISynchronousCacheReplicator | Listens to CacheManager and Cache events and propagates those to
CachePeer peers of the Cache. |
TransactionalRMICachePeer | An RMI based implementation of CachePeer supporting transactions. |
Enum Summary | |
---|---|
RmiEventMessage.RmiEventType | Enumeration of event types. |
Exception Summary | |
---|---|
RemoteCacheException | A Cache Exception in the distribution mechanism. |
This package is for cache replication.
If the Element is not available anywhere else then the Element itself should form the payload of the notification. An example is a cached web page. This notification strategy is called copy.
Where the cached data is available in a database, there are two choices. Copy as before, or invalidate the data. By invalidating the data, the application tied to the other cache instance will be forced to refresh its cache from the database, preserving cache coherency. Only the Element key needs to be passed over the network.
ehcache supports notification through copy and invalidate, selectable per cache.
ehcache uses a peer replication topology. It adds a twist with CachePeerProvider, an interface which supplies a list of cache instance peers, so as to handle peers entering and leaving the cluster. Some ideas for peer provider implementations are: configuration time list, multicast discovery, application specific cluster list.
ehcache will buffer changes to lower chattiness.
ehcache CachePeerProvider indentifies the local cache instance and excludes it from the notification list. Each Cache has a GUID. That GUID can be compared with list of cache peers and the local peer excluded.
Infinite notifications are prevented by having each CacheReplicatorListener call putQuiet and removeQuite methods on their decorated caches, so as not to nofify listeners.
|
ehcache | |||||||||
PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES All Classes |