[jbosscache-commits] JBoss Cache SVN: r6505 - benchmarks/benchmark-fwk/trunk/cache-products/jbosscache-3.0.0/src/org/cachebench/cachewrappers.

jbosscache-commits at lists.jboss.org jbosscache-commits at lists.jboss.org
Tue Aug 5 06:27:36 EDT 2008


Author: manik.surtani at jboss.com
Date: 2008-08-05 06:27:36 -0400 (Tue, 05 Aug 2008)
New Revision: 6505

Modified:
   benchmarks/benchmark-fwk/trunk/cache-products/jbosscache-3.0.0/src/org/cachebench/cachewrappers/JBossCache300Wrapper.java
Log:
More efficient flat map

Modified: benchmarks/benchmark-fwk/trunk/cache-products/jbosscache-3.0.0/src/org/cachebench/cachewrappers/JBossCache300Wrapper.java
===================================================================
--- benchmarks/benchmark-fwk/trunk/cache-products/jbosscache-3.0.0/src/org/cachebench/cachewrappers/JBossCache300Wrapper.java	2008-08-05 10:23:56 UTC (rev 6504)
+++ benchmarks/benchmark-fwk/trunk/cache-products/jbosscache-3.0.0/src/org/cachebench/cachewrappers/JBossCache300Wrapper.java	2008-08-05 10:27:36 UTC (rev 6505)
@@ -8,7 +8,6 @@
 import org.jboss.cache.Fqn;
 import org.jboss.cache.config.Option;
 import org.jboss.cache.util.Caches;
-import org.jboss.cache.util.Caches.HashKeySelector;
 
 import java.util.List;
 import java.util.Map;
@@ -38,7 +37,7 @@
       if (FLAT)
       {
          log.info("Using FLAT MAP wrapper");
-         flatCache = Caches.asPartitionedMap(cache.getRoot(), new HashKeySelector(128));
+         flatCache = Caches.asMap(cache);
       }
    }
 




More information about the jbosscache-commits mailing list