From 6be1843c237d9b48615210c23828ca4eae3adfe4 Mon Sep 17 00:00:00 2001
From: abobrov <abobrov@localhost>
Date: Sat, 08 Dec 2007 18:04:52 +0000
Subject: [PATCH] - [Issue 2086]  FifoEntryCache should be the default cache:   shuffle FIFO and Soft Reference entry cache positions and their respective cache levels so that FIFO becomes the first choice.

---
 opendj-sdk/opends/resource/config/config.ldif |   20 ++++++++++----------
 1 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/opendj-sdk/opends/resource/config/config.ldif b/opendj-sdk/opends/resource/config/config.ldif
index 7729c7d..8acc186 100644
--- a/opendj-sdk/opends/resource/config/config.ldif
+++ b/opendj-sdk/opends/resource/config/config.ldif
@@ -492,24 +492,24 @@
 objectClass: ds-cfg-branch
 cn: Entry Caches
 
-dn: cn=Soft Reference,cn=Entry Caches,cn=config
-objectClass: top
-objectClass: ds-cfg-entry-cache
-objectClass: ds-cfg-soft-reference-entry-cache
-cn: Soft Reference
-ds-cfg-enabled: false
-ds-cfg-cache-level: 1
-ds-cfg-java-class: org.opends.server.extensions.SoftReferenceEntryCache
-
 dn: cn=FIFO,cn=Entry Caches,cn=config
 objectClass: top
 objectClass: ds-cfg-entry-cache
 objectClass: ds-cfg-fifo-entry-cache
 cn: FIFO
 ds-cfg-enabled: false
-ds-cfg-cache-level: 2
+ds-cfg-cache-level: 1
 ds-cfg-java-class: org.opends.server.extensions.FIFOEntryCache
 
+dn: cn=Soft Reference,cn=Entry Caches,cn=config
+objectClass: top
+objectClass: ds-cfg-entry-cache
+objectClass: ds-cfg-soft-reference-entry-cache
+cn: Soft Reference
+ds-cfg-enabled: false
+ds-cfg-cache-level: 2
+ds-cfg-java-class: org.opends.server.extensions.SoftReferenceEntryCache
+
 dn: cn=File System,cn=Entry Caches,cn=config
 objectClass: top
 objectClass: ds-cfg-entry-cache

--
Gitblit v1.10.0