Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 97823 invoked from network); 31 Jul 2006 23:50:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 31 Jul 2006 23:50:39 -0000 Received: (qmail 45277 invoked by uid 500); 31 Jul 2006 23:50:39 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 45239 invoked by uid 500); 31 Jul 2006 23:50:39 -0000 Mailing-List: contact commits-help@directory.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@directory.apache.org Delivered-To: mailing list commits@directory.apache.org Received: (qmail 45228 invoked by uid 99); 31 Jul 2006 23:50:39 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 31 Jul 2006 16:50:39 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [140.211.166.113] (HELO eris.apache.org) (140.211.166.113) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 31 Jul 2006 16:50:38 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id D99F51A981A; Mon, 31 Jul 2006 16:50:18 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r427373 - /directory/trunks/apacheds/server-tools/src/main/java/org/apache/directory/server/tools/commands/dumpcmd/DumpCommandExecutor.java Date: Mon, 31 Jul 2006 23:50:18 -0000 To: commits@directory.apache.org From: elecharny@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20060731235018.D99F51A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: elecharny Date: Mon Jul 31 16:50:18 2006 New Revision: 427373 URL: http://svn.apache.org/viewvc?rev=427373&view=rev Log: The JdbmIndex constructor now get a cache size as third argument. Modified: directory/trunks/apacheds/server-tools/src/main/java/org/apache/directory/server/tools/commands/dumpcmd/DumpCommandExecutor.java Modified: directory/trunks/apacheds/server-tools/src/main/java/org/apache/directory/server/tools/commands/dumpcmd/DumpCommandExecutor.java URL: http://svn.apache.org/viewvc/directory/trunks/apacheds/server-tools/src/main/java/org/apache/directory/server/tools/commands/dumpcmd/DumpCommandExecutor.java?rev=427373&r1=427372&r2=427373&view=diff ============================================================================== --- directory/trunks/apacheds/server-tools/src/main/java/org/apache/directory/server/tools/commands/dumpcmd/DumpCommandExecutor.java (original) +++ directory/trunks/apacheds/server-tools/src/main/java/org/apache/directory/server/tools/commands/dumpcmd/DumpCommandExecutor.java Mon Jul 31 16:50:18 2006 @@ -305,7 +305,7 @@ JdbmMasterTable master = new JdbmMasterTable( recMan ); AttributeType attributeType = bootstrapRegistries.getAttributeTypeRegistry().lookup( "apacheUpdn" ); - JdbmIndex idIndex = new JdbmIndex( attributeType, partitionDirectory ); + JdbmIndex idIndex = new JdbmIndex( attributeType, partitionDirectory, 1000 ); out.println( "#---------------------" ); NamingEnumeration list = master.listTuples();