Author: manik.surtani(a)jboss.com
Date: 2008-07-17 07:46:40 -0400 (Thu, 17 Jul 2008)
New Revision: 6313
Modified:
benchmarks/benchmark-fwk/trunk/cache-products/jbosscache-3.0.0/lib/jbosscache-core.jar
benchmarks/benchmark-fwk/trunk/cache-products/jbosscache-3.0.0/src/org/cachebench/cachewrappers/JBossCache300Wrapper.java
Log:
Updated jbc-3.0.0 jar and wrapper
Modified:
benchmarks/benchmark-fwk/trunk/cache-products/jbosscache-3.0.0/lib/jbosscache-core.jar
===================================================================
(Binary files differ)
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-07-17
10:56:16 UTC (rev 6312)
+++
benchmarks/benchmark-fwk/trunk/cache-products/jbosscache-3.0.0/src/org/cachebench/cachewrappers/JBossCache300Wrapper.java 2008-07-17
11:46:40 UTC (rev 6313)
@@ -39,12 +39,12 @@
public void put(List<String> path, Object key, Object value) throws Exception
{
- cache.put(Fqn.fromList(path), key, value);
+ cache.put(Fqn.fromList((List) path, true), key, value);
}
public Object get(List<String> path, Object key) throws Exception
{
- return cache.get(Fqn.fromList(path), key);
+ return cache.get(Fqn.fromList((List) path, true), key);
}
public void empty() throws Exception
@@ -67,6 +67,6 @@
{
Option option = cache.getInvocationContext().getOptionOverrides();
option.setForceDataGravitation(true);
- return cache.get(Fqn.fromList(path), key);
+ return cache.get(Fqn.fromList((List) path, true), key);
}
}
Show replies by date