Author: rajdavies
Date: Fri Feb 29 23:30:03 2008
New Revision: 632560

URL: http://svn.apache.org/viewvc?rev=632560&view=rev
Log:
reset defaults

Modified:
    
activemq/trunk/activemq-core/src/main/java/org/apache/activemq/kaha/impl/index/hash/HashIndex.java

Modified: 
activemq/trunk/activemq-core/src/main/java/org/apache/activemq/kaha/impl/index/hash/HashIndex.java
URL: 
http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/kaha/impl/index/hash/HashIndex.java?rev=632560&r1=632559&r2=632560&view=diff
==============================================================================
--- 
activemq/trunk/activemq-core/src/main/java/org/apache/activemq/kaha/impl/index/hash/HashIndex.java
 (original)
+++ 
activemq/trunk/activemq-core/src/main/java/org/apache/activemq/kaha/impl/index/hash/HashIndex.java
 Fri Feb 29 23:30:03 2008
@@ -434,8 +434,8 @@
     }
 
     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"));
     }
 }


Reply via email to