Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkmoore2008-07-25 14:34:21 +0000
committerkmoore2008-07-25 14:34:21 +0000
commitb81d7a62fa38bf26f16356594af5f8549abc65b1 (patch)
treee0ffa014de88aa1dfea66d6b78e2a322daa84475 /jpa/plugins/org.eclipse.jpt.eclipselink.core/src/org
parentd61c64d0068f65d818960c5f158c86340a07ead9 (diff)
downloadwebtools.dali-b81d7a62fa38bf26f16356594af5f8549abc65b1.tar.gz
webtools.dali-b81d7a62fa38bf26f16356594af5f8549abc65b1.tar.xz
webtools.dali-b81d7a62fa38bf26f16356594af5f8549abc65b1.zip
I have been informed by James that the cache size default is 100, not 1000. supposedly it was 1000 in TL essentials, but is not in EclipseLink
Diffstat (limited to 'jpa/plugins/org.eclipse.jpt.eclipselink.core/src/org')
-rw-r--r--jpa/plugins/org.eclipse.jpt.eclipselink.core/src/org/eclipse/jpt/eclipselink/core/internal/context/caching/Caching.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.eclipselink.core/src/org/eclipse/jpt/eclipselink/core/internal/context/caching/Caching.java b/jpa/plugins/org.eclipse.jpt.eclipselink.core/src/org/eclipse/jpt/eclipselink/core/internal/context/caching/Caching.java
index 882aac3e6c..697ab70a67 100644
--- a/jpa/plugins/org.eclipse.jpt.eclipselink.core/src/org/eclipse/jpt/eclipselink/core/internal/context/caching/Caching.java
+++ b/jpa/plugins/org.eclipse.jpt.eclipselink.core/src/org/eclipse/jpt/eclipselink/core/internal/context/caching/Caching.java
@@ -32,7 +32,7 @@ public interface Caching extends PersistenceUnitProperties
static final String CACHE_SIZE_DEFAULT_PROPERTY = "cacheSizeDefaultProperty";
// EclipseLink key string
static final String ECLIPSELINK_CACHE_SIZE_DEFAULT = "eclipselink.cache.size.default";
- static final Integer DEFAULT_CACHE_SIZE_DEFAULT = new Integer(1000);
+ static final Integer DEFAULT_CACHE_SIZE_DEFAULT = new Integer(100);
Boolean getDefaultSharedCacheDefault();
Boolean getSharedCacheDefault();
@@ -57,7 +57,7 @@ public interface Caching extends PersistenceUnitProperties
static final String CACHE_SIZE_PROPERTY = "cacheSizeProperty";
// EclipseLink key string
static final String ECLIPSELINK_CACHE_SIZE = "eclipselink.cache.size.";
- static final Integer DEFAULT_CACHE_SIZE = new Integer(1000);
+ static final Integer DEFAULT_CACHE_SIZE = new Integer(100);
Boolean getDefaultSharedCache();
Boolean getSharedCache(String entityName);

Back to the top