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/Caching Overview"

(Caching Overview)
Line 21: Line 21:
 
EclipseLink offers an integrated and functional cache including the following features:
 
EclipseLink offers an integrated and functional cache including the following features:
  
* isolated persistence context cache (L1), and shared persistence unit cache (L2)
+
* Isolated persistence context cache (L1), and shared persistence unit cache (L2)
* caching configurable at the Entity level, entities can be cached, or not, cached entities can reference non-cached entities
+
* Caching configurable at the Entity level, entities can be cached, or not, cached entities can reference non-cached entities
* multiple cache type options (weak, soft, full, weak-cache, soft-cache)
+
* Multiple cache type options (weak, soft, full, weak-cache, soft-cache)
* configurable size
+
* Configurable size
* cache indexes
+
* Cache indexes
* in-memory querying and conforming
+
* In-memory querying and conforming
* time to live, and daily cache invalidation
+
* Time to live, and daily cache invalidation
* clustered cache coordination through RMI and JMS
+
* Clustered cache coordination through RMI and JMS
* database event driven cache invalidation and Oracle DCN/QCN
+
* Database event driven cache invalidation and Oracle DCN/QCN
* support for JPA 2.0 @Cachable configuraiton and API
+
* Support for JPA 2.0 @Cachable configuraiton and API
* extended JpaCache API
+
* Extended JpaCache API
* query cache
+
* Query cache
  
 
EclipseLink supports the following caching annotations:
 
EclipseLink supports the following caching annotations:

Revision as of 10:39, 7 May 2012



Caching Overview

The EclipseLink cache is an in-memory repository that stores recently read or written objects based on class and Id values. EclipseLink uses the cache to do the following:

  • Improve performance by holding recently read or written objects and their relationships and accessing them in-memory to minimize database access.
  • Manage locking and isolation level.
  • Manage object identity.

EclipseLink offers an integrated and functional cache including the following features:

  • Isolated persistence context cache (L1), and shared persistence unit cache (L2)
  • Caching configurable at the Entity level, entities can be cached, or not, cached entities can reference non-cached entities
  • Multiple cache type options (weak, soft, full, weak-cache, soft-cache)
  • Configurable size
  • Cache indexes
  • In-memory querying and conforming
  • Time to live, and daily cache invalidation
  • Clustered cache coordination through RMI and JMS
  • Database event driven cache invalidation and Oracle DCN/QCN
  • Support for JPA 2.0 @Cachable configuraiton and API
  • Extended JpaCache API
  • Query cache

EclipseLink supports the following caching annotations:

  • @Cachable
  • @Cache
  • @ExistenceChecking


EclipseLink also provides a number of persistence unit properties that you can specify to configure the EclipseLink cache (see How to Use the Persistence Unit Properties for Caching). These properties may compliment or provide an alternative to the usage of annotations.

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

Back to the top