From 84f11578841b626e181116f41772d6166e2dde9a Mon Sep 17 00:00:00 2001
From: Ludovic Poitou <ludovic.poitou@forgerock.com>
Date: Thu, 08 Dec 2011 11:29:01 +0000
Subject: [PATCH] Fix for OPENDJ-372: Enhance rebuild-index and verify-index tools to use JE 5.x disk ordered cursoring The performances gain will vary depending on the DB size and state, but I got consistent faster index rebuilding with 1M entry DB with the new cursoring API. Changes also include some tidy up around use of the database container, using getters rather than public fields directly.
---
opends/src/server/org/opends/server/backends/jeb/RootContainer.java | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/opends/src/server/org/opends/server/backends/jeb/RootContainer.java b/opends/src/server/org/opends/server/backends/jeb/RootContainer.java
index a5acc43..4c3b6a4 100644
--- a/opends/src/server/org/opends/server/backends/jeb/RootContainer.java
+++ b/opends/src/server/org/opends/server/backends/jeb/RootContainer.java
@@ -633,7 +633,7 @@
* Get the total number of entries in this root container.
*
* @return The number of entries in this root container
- * @throws DatabaseException If an error occurs while retriving the entry
+ * @throws DatabaseException If an error occurs while retrieving the entry
* count.
*/
public long getEntryCount() throws DatabaseException
--
Gitblit v1.10.0