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)
(Caching)
Line 5: Line 5:
 
}}
 
}}
 
=Caching=
 
=Caching=
The EclipseLink cache is an in-memory repository that stores recently read or written objects based on class and Id values.  
+
EclipseLink offers a highly performant, robust and functional object cache.  Caching is provided at both the persistence context level (L1), and a shared cache at the persistence unit level (L2).  
 
Caching is discussed in the following topics:
 
Caching is discussed in the following topics:
  

Revision as of 10:13, 7 May 2012


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

Elug example icon.png Examples

Caching

EclipseLink offers a highly performant, robust and functional object cache. Caching is provided at both the persistence context level (L1), and a shared cache at the persistence unit level (L2). Caching is discussed in the following topics:


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

Back to the top