From 32dc290eb7ea4ecacf308e7f5c7888f71fdc0b7b Mon Sep 17 00:00:00 2001 From: Robert Davies Date: Sat, 1 Mar 2008 07:30:03 +0000 Subject: [PATCH] reset defaults git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@632560 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/activemq/kaha/impl/index/hash/HashIndex.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/activemq-core/src/main/java/org/apache/activemq/kaha/impl/index/hash/HashIndex.java b/activemq-core/src/main/java/org/apache/activemq/kaha/impl/index/hash/HashIndex.java index bb37bab0f7..9d38d2d95c 100644 --- a/activemq-core/src/main/java/org/apache/activemq/kaha/impl/index/hash/HashIndex.java +++ b/activemq-core/src/main/java/org/apache/activemq/kaha/impl/index/hash/HashIndex.java @@ -434,8 +434,8 @@ public class HashIndex implements Index, HashIndexMBean { } static { - DEFAULT_PAGE_SIZE = Integer.parseInt(System.getProperty("defaultPageSize", "8000")); - DEFAULT_KEY_SIZE = Integer.parseInt(System.getProperty("defaultKeySize", "80")); - DEFAULT_BIN_SIZE= Integer.parseInt(System.getProperty("defaultBinSize", "128")); + DEFAULT_PAGE_SIZE = Integer.parseInt(System.getProperty("defaultPageSize", "16384")); + DEFAULT_KEY_SIZE = Integer.parseInt(System.getProperty("defaultKeySize", "96")); + DEFAULT_BIN_SIZE= Integer.parseInt(System.getProperty("defaultBinSize", "1024")); } }