Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "EclipseLink/UserGuide/JPA/Basic JPA Development/Caching/Interceptors"

(Cache Interceptors and External Caches)
Line 15: Line 15:
  
 
=Cache Interceptors and External Caches=
 
=Cache Interceptors and External Caches=
EclipseLink provides a very functional, performant and integrated cache.  Usage of an external cache is not normally required in EclipseLink as it is in other JPA products.  EclipseLink does allow the integration of third party external caches through its <tt>CacheInterceptor</tt> annotation and abstract class.
+
EclipseLink provides a very functional, performant and integrated cache.  Usage of an external cache is not normally required in EclipseLink as it is in other JPA products.  Although not required, EclipseLink does allow the integration of third party external caches through its <tt>CacheInterceptor</tt> annotation and abstract class.
  
 
The Oracle TopLink Grid product provides an integration with EclipseLink to the Oracle Coherence distributed cache.  A distributed cache allows a cache to be scaled to a large cluster of servers (see [http://www.oracle.com/technetwork/middleware/toplink/tl-grid-097210.html Oracle TopLink Grid]).
 
The Oracle TopLink Grid product provides an integration with EclipseLink to the Oracle Coherence distributed cache.  A distributed cache allows a cache to be scaled to a large cluster of servers (see [http://www.oracle.com/technetwork/middleware/toplink/tl-grid-097210.html Oracle TopLink Grid]).

Revision as of 14:52, 30 May 2012

EclipseLink JPA

Eclipselink-logo.gif
EclipseLink
Website
Download
Community
Mailing ListForumsIRCmattermost
Issues
OpenHelp WantedBug Day
Contribute
Browse Source


Cache Interceptors and External Caches

EclipseLink provides a very functional, performant and integrated cache. Usage of an external cache is not normally required in EclipseLink as it is in other JPA products. Although not required, EclipseLink does allow the integration of third party external caches through its CacheInterceptor annotation and abstract class.

The Oracle TopLink Grid product provides an integration with EclipseLink to the Oracle Coherence distributed cache. A distributed cache allows a cache to be scaled to a large cluster of servers (see Oracle TopLink Grid).

Eclipselink-logo.gif
Version: 2.4 DRAFT
Other versions...

Back to the top