JBoss Cache SVN: r5186 - in core/tags/1.4.1.SP9: docs and 1 other directories.
by jbosscache-commits@lists.jboss.org
Author: manik.surtani(a)jboss.com
Date: 2008-01-22 05:50:19 -0500 (Tue, 22 Jan 2008)
New Revision: 5186
Modified:
core/tags/1.4.1.SP9/build.xml
core/tags/1.4.1.SP9/docs/Changelog.txt
core/tags/1.4.1.SP9/src/org/jboss/cache/Version.java
Log:
Updated version details to release 1.4.1.SP9
Modified: core/tags/1.4.1.SP9/build.xml
===================================================================
--- core/tags/1.4.1.SP9/build.xml 2008-01-22 10:48:02 UTC (rev 5185)
+++ core/tags/1.4.1.SP9/build.xml 2008-01-22 10:50:19 UTC (rev 5186)
@@ -6,7 +6,7 @@
<property name="module.name" value="JBossCache"/>
<!--We now requires version to have no white space since Ant+JBossAop will sometime choke. -->
- <property name="module.version" value="1.4.1.SP8"/>
+ <property name="module.version" value="1.4.1.SP9"/>
<property name="implementation.url" value="http://www.jboss.com/products/jbosscache"/>
<property file="build.properties"/>
<property name="root.dir" value="${basedir}"/>
Modified: core/tags/1.4.1.SP9/docs/Changelog.txt
===================================================================
--- core/tags/1.4.1.SP9/docs/Changelog.txt 2008-01-22 10:48:02 UTC (rev 5185)
+++ core/tags/1.4.1.SP9/docs/Changelog.txt 2008-01-22 10:50:19 UTC (rev 5186)
@@ -1,5 +1,14 @@
$Id$
+
+Release 1.4.1.SP9 (January 22, 2008)
+====================================
+Patch release on 1.4.1.GA
+
+** Bug
+ * [ JBCACHE-1246 ] TransactionTable leaks memory when used with FAIL_SILENTLY option
+ * [ JBCACHE-1255 ] setUseInterceptorMbeans not available in TreeCacheMBean interface, causing problems when deployed in JBoss AS
+
Release 1.4.1.SP8 (December 12, 2007)
=====================================
Patch release on 1.4.1.GA
Modified: core/tags/1.4.1.SP9/src/org/jboss/cache/Version.java
===================================================================
--- core/tags/1.4.1.SP9/src/org/jboss/cache/Version.java 2008-01-22 10:48:02 UTC (rev 5185)
+++ core/tags/1.4.1.SP9/src/org/jboss/cache/Version.java 2008-01-22 10:50:19 UTC (rev 5186)
@@ -10,9 +10,9 @@
*/
public class Version
{
- public static final String version = "1.4.1.SP8";
+ public static final String version = "1.4.1.SP9";
public static final String codename = "Cayenne";
- public static byte[] version_id = {'0', '1', '4', '1', 'S', 'P', '8'};
+ public static byte[] version_id = {'0', '1', '4', '1', 'S', 'P', '9'};
public static final String cvs = "$Id$";
private static final int MAJOR_SHIFT = 11;
16 years, 11 months
JBoss Cache SVN: r5185 - in core/tags/1.4.1.SP9: src/org/jboss/cache/marshall and 1 other directories.
by jbosscache-commits@lists.jboss.org
Author: manik.surtani(a)jboss.com
Date: 2008-01-22 05:48:02 -0500 (Tue, 22 Jan 2008)
New Revision: 5185
Removed:
core/tags/1.4.1.SP9/tests/functional/org/jboss/cache/buddyreplication/RemoveRootBuddyTest.java
Modified:
core/tags/1.4.1.SP9/src/org/jboss/cache/Node.java
core/tags/1.4.1.SP9/src/org/jboss/cache/TreeCache.java
core/tags/1.4.1.SP9/src/org/jboss/cache/marshall/JBCMethodCall.java
Log:
Reverted JBCACHE-1230 and JBCACHE-1241
Modified: core/tags/1.4.1.SP9/src/org/jboss/cache/Node.java
===================================================================
--- core/tags/1.4.1.SP9/src/org/jboss/cache/Node.java 2008-01-22 10:34:19 UTC (rev 5184)
+++ core/tags/1.4.1.SP9/src/org/jboss/cache/Node.java 2008-01-22 10:48:02 UTC (rev 5185)
@@ -446,37 +446,7 @@
{
if (data != null)
{
- if (trace)
- {
- sb.append("\ndata=").append(data.keySet());
- }
- else
- {
- sb.append("\ndata=[");
- Set keys = data.keySet();
- int i=0;
- for (Iterator it = keys.iterator(); it.hasNext();)
- {
- i++;
- sb.append(it.next());
-
- if (i == 5)
- {
- int more = keys.size() - 5;
- if (more > 1)
- {
- sb.append(", and ");
- sb.append(more);
- sb.append(" more");
- break;
- }
- }
- else
- {
- sb.append(", ");
- }
- }
- }
+ sb.append("\ndata=").append(data.keySet());
sb.append("]");
}
}
Modified: core/tags/1.4.1.SP9/src/org/jboss/cache/TreeCache.java
===================================================================
--- core/tags/1.4.1.SP9/src/org/jboss/cache/TreeCache.java 2008-01-22 10:34:19 UTC (rev 5184)
+++ core/tags/1.4.1.SP9/src/org/jboss/cache/TreeCache.java 2008-01-22 10:48:02 UTC (rev 5185)
@@ -3887,7 +3887,7 @@
for (Iterator i = children.iterator(); i.hasNext();)
{
Fqn childFqn = new Fqn(fqn, i.next());
- if (!internalFqns.contains(childFqn)) remove(childFqn, o);
+ remove(childFqn, o);
}
}
}
@@ -3919,7 +3919,7 @@
for (Iterator i = children.iterator(); i.hasNext();)
{
Fqn childFqn = new Fqn(fqn, i.next());
- if (!internalFqns.contains(childFqn)) evict(childFqn);
+ evict(childFqn);
}
}
}
Modified: core/tags/1.4.1.SP9/src/org/jboss/cache/marshall/JBCMethodCall.java
===================================================================
--- core/tags/1.4.1.SP9/src/org/jboss/cache/marshall/JBCMethodCall.java 2008-01-22 10:34:19 UTC (rev 5184)
+++ core/tags/1.4.1.SP9/src/org/jboss/cache/marshall/JBCMethodCall.java 2008-01-22 10:48:02 UTC (rev 5185)
@@ -69,22 +69,13 @@
ret.append("; Args: (");
if (args != null && args.length > 0)
{
- if (trace)
+ boolean first = true;
+ for (int i=0; i<args.length; i++)
{
- boolean first = true;
- for (int i=0; i<args.length; i++)
- {
- if (first) first = false;
- else ret.append(", ");
- ret.append(args[i]);
- }
+ if (first) first = false;
+ else ret.append(", ");
+ ret.append(args[i]);
}
- else
- {
- ret.append(" arg[0] = ");
- ret.append(args[0]);
- if (args.length > 1) ret.append(" ...");
- }
}
ret.append(')');
return ret.toString();
Deleted: core/tags/1.4.1.SP9/tests/functional/org/jboss/cache/buddyreplication/RemoveRootBuddyTest.java
===================================================================
--- core/tags/1.4.1.SP9/tests/functional/org/jboss/cache/buddyreplication/RemoveRootBuddyTest.java 2008-01-22 10:34:19 UTC (rev 5184)
+++ core/tags/1.4.1.SP9/tests/functional/org/jboss/cache/buddyreplication/RemoveRootBuddyTest.java 2008-01-22 10:48:02 UTC (rev 5185)
@@ -1,44 +0,0 @@
-package org.jboss.cache.buddyreplication;
-
-import org.jboss.cache.Fqn;
-import org.jboss.cache.TreeCache;
-import org.jboss.cache.misc.TestingUtil;
-
-import java.util.ArrayList;
-
-/**
- * Test added to replicate a found issue - JBCACHE-1241
- *
- * @author Mircea.Markus(a)jboss.com
- */
-public class RemoveRootBuddyTest extends BuddyReplicationTestsBase
-{
- TreeCache cache1, cache2;
-
- protected void setUp() throws Exception
- {
- cache1 = createCache(false, 1, "myBuddyPoolReplicationGroup", false, true, true);
- cache2 = createCache(false, 1, "myBuddyPoolReplicationGroup", false, true, true);
-
- TestingUtil.blockUntilViewsReceived(new TreeCache[]{cache1, cache2}, 60000);
- }
-
- protected void tearDown()
- {
- cache1.stop();
- cache2.stop();
- }
-
- public void testRemoveRootNode() throws Exception
- {
- int opCount = 10;
- for (int i = 0; i < opCount; i++)
- {
- String key = String.valueOf(opCount);
- String value = String.valueOf(opCount);
- Fqn f = Fqn.fromString("/test" + key);
- cache1.put(f, key, value);
- }
- cache1.remove(Fqn.ROOT);
- }
-}
16 years, 11 months
JBoss Cache SVN: r5184 - core/tags.
by jbosscache-commits@lists.jboss.org
Author: manik.surtani(a)jboss.com
Date: 2008-01-22 05:34:19 -0500 (Tue, 22 Jan 2008)
New Revision: 5184
Added:
core/tags/1.4.1.SP9/
Log:
Copied: core/tags/1.4.1.SP9 (from rev 5183, core/branches/1.4.X)
16 years, 11 months
JBoss Cache SVN: r5183 - demos/core-demo-gui/tags/1.0.BETA1.
by jbosscache-commits@lists.jboss.org
Author: manik.surtani(a)jboss.com
Date: 2008-01-21 20:41:15 -0500 (Mon, 21 Jan 2008)
New Revision: 5183
Modified:
demos/core-demo-gui/tags/1.0.BETA1/pom.xml
Log:
Modified: demos/core-demo-gui/tags/1.0.BETA1/pom.xml
===================================================================
--- demos/core-demo-gui/tags/1.0.BETA1/pom.xml 2008-01-22 01:40:37 UTC (rev 5182)
+++ demos/core-demo-gui/tags/1.0.BETA1/pom.xml 2008-01-22 01:41:15 UTC (rev 5183)
@@ -10,7 +10,7 @@
</parent>
<groupId>org.jboss.cache</groupId>
<artifactId>jbosscache-demo</artifactId>
- <version>1.0-SNAPSHOT</version>
+ <version>1.0.BETA1</version>
<name>JBoss Cache - Core Edition GUI Demo</name>
<description>JBoss Cache - Core Edition GUI Demo</description>
<packaging>jar</packaging>
16 years, 11 months
JBoss Cache SVN: r5182 - demos/core-demo-gui/tags.
by jbosscache-commits@lists.jboss.org
Author: manik.surtani(a)jboss.com
Date: 2008-01-21 20:40:37 -0500 (Mon, 21 Jan 2008)
New Revision: 5182
Added:
demos/core-demo-gui/tags/1.0.BETA1/
Log:
Copied: demos/core-demo-gui/tags/1.0.BETA1 (from rev 5181, demos/core-demo-gui/trunk)
16 years, 11 months
JBoss Cache SVN: r5181 - in demos/core-demo-gui/trunk: src/main/resources and 1 other directories.
by jbosscache-commits@lists.jboss.org
Author: manik.surtani(a)jboss.com
Date: 2008-01-21 20:39:46 -0500 (Mon, 21 Jan 2008)
New Revision: 5181
Modified:
demos/core-demo-gui/trunk/pom.xml
demos/core-demo-gui/trunk/src/main/resources/bin/run.sh
demos/core-demo-gui/trunk/src/main/resources/demo-cache-config.xml
demos/core-demo-gui/trunk/src/main/resources/log4j.xml
Log:
Updated a bunch of things
Modified: demos/core-demo-gui/trunk/pom.xml
===================================================================
--- demos/core-demo-gui/trunk/pom.xml 2008-01-22 01:20:46 UTC (rev 5180)
+++ demos/core-demo-gui/trunk/pom.xml 2008-01-22 01:39:46 UTC (rev 5181)
@@ -3,9 +3,6 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
- <properties>
- <jbosscache-core-version>2.1.0-SNAPSHOT</jbosscache-core-version>
- </properties>
<parent>
<groupId>org.jboss.cache</groupId>
<artifactId>jbosscache-common-parent</artifactId>
@@ -13,7 +10,7 @@
</parent>
<groupId>org.jboss.cache</groupId>
<artifactId>jbosscache-demo</artifactId>
- <version>1.0.BETA1</version>
+ <version>1.0-SNAPSHOT</version>
<name>JBoss Cache - Core Edition GUI Demo</name>
<description>JBoss Cache - Core Edition GUI Demo</description>
<packaging>jar</packaging>
@@ -33,6 +30,11 @@
<artifactId>forms_rt</artifactId>
<version>6.0.5</version>
</dependency>
+ <dependency>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ <version>1.2.13</version>
+ </dependency>
</dependencies>
<build>
@@ -51,7 +53,7 @@
<descriptors>
<descriptor>assembly.xml</descriptor>
</descriptors>
- <finalName>${artifactId}</finalName>
+ <finalName>${artifactId}-${version}</finalName>
<outputDirectory>target/distribution</outputDirectory>
<workDirectory>target/assembly/work</workDirectory>
</configuration>
Modified: demos/core-demo-gui/trunk/src/main/resources/bin/run.sh
===================================================================
--- demos/core-demo-gui/trunk/src/main/resources/bin/run.sh 2008-01-22 01:20:46 UTC (rev 5180)
+++ demos/core-demo-gui/trunk/src/main/resources/bin/run.sh 2008-01-22 01:39:46 UTC (rev 5181)
@@ -1,6 +1,6 @@
#!/bin/bash
-CP=./etc/
+CP=./etc
for i in lib/*.jar ; do
CP=${i}:${CP}
@@ -8,4 +8,6 @@
CP=jbosscache-demo.jar:${CP}
-java -cp ${CP} org.jboss.cache.demo.JBossCacheDemo ${*}
+JVM_PARAMS="-Dbind.address=127.0.0.1 -Djava.net.preferIPv4Stack=true -Dlog4j.configuration=./etc/log4j.xml"
+
+java -cp ${CP} ${JVM_PARAMS} org.jboss.cache.demo.JBossCacheDemo ${*}
Modified: demos/core-demo-gui/trunk/src/main/resources/demo-cache-config.xml
===================================================================
--- demos/core-demo-gui/trunk/src/main/resources/demo-cache-config.xml 2008-01-22 01:20:46 UTC (rev 5180)
+++ demos/core-demo-gui/trunk/src/main/resources/demo-cache-config.xml 2008-01-22 01:39:46 UTC (rev 5181)
@@ -126,7 +126,7 @@
<pbcast.GMS print_local_addr="true" join_timeout="5000" shun="false"
view_bundling="true" view_ack_collection_timeout="5000"/>
<FRAG2 frag_size="60000"/>
- <pbcast.STREAMING_STATE_TRANSFER use_reading_thread="true"/>
+ <pbcast.STREAMING_STATE_TRANSFER/>
<!-- <pbcast.STATE_TRANSFER/> -->
<pbcast.FLUSH timeout="0"/>
</config>
@@ -155,7 +155,7 @@
<!-- Max number of milliseconds to wait for a lock acquisition -->
<attribute name="LockAcquisitionTimeout">10000</attribute>
- <!-- Buddy Replication config -->
+ <!-- Buddy Replication config -->
<attribute name="BuddyReplicationConfig">
<config>
<buddyReplicationEnabled>true</buddyReplicationEnabled>
Modified: demos/core-demo-gui/trunk/src/main/resources/log4j.xml
===================================================================
--- demos/core-demo-gui/trunk/src/main/resources/log4j.xml 2008-01-22 01:20:46 UTC (rev 5180)
+++ demos/core-demo-gui/trunk/src/main/resources/log4j.xml 2008-01-22 01:39:46 UTC (rev 5181)
@@ -66,7 +66,7 @@
<priority value="WARN"/>
</category>
- <category name="org.jboss.cache">
+ <category name="org.jboss.cache.*">
<priority value="WARN"/>
</category>
16 years, 11 months
JBoss Cache SVN: r5180 - demos/core-demo-gui.
by jbosscache-commits@lists.jboss.org
Author: manik.surtani(a)jboss.com
Date: 2008-01-21 20:20:46 -0500 (Mon, 21 Jan 2008)
New Revision: 5180
Added:
demos/core-demo-gui/tags/
Log:
16 years, 11 months
JBoss Cache SVN: r5179 - demos/core-demo-gui/trunk.
by jbosscache-commits@lists.jboss.org
Author: manik.surtani(a)jboss.com
Date: 2008-01-21 20:19:43 -0500 (Mon, 21 Jan 2008)
New Revision: 5179
Modified:
demos/core-demo-gui/trunk/README.txt
demos/core-demo-gui/trunk/pom.xml
Log:
Updated to use 2.1.0.CR3 and updated README
Modified: demos/core-demo-gui/trunk/README.txt
===================================================================
--- demos/core-demo-gui/trunk/README.txt 2008-01-22 01:11:44 UTC (rev 5178)
+++ demos/core-demo-gui/trunk/README.txt 2008-01-22 01:19:43 UTC (rev 5179)
@@ -4,15 +4,25 @@
------------------
To run the demo, all you need is a Java 5 compliant JVM. All dependencies are packaged in the demo ZIP file, which
-can be downloaded from http://snapshots.jboss.org/maven2/org/jboss/cache/jbosscache-demo/1.0-SNA...
+can be downloaded from the JBoss.org Maven2 repository [1].
Simply unzip the demo distribution and use the "run.sh" shell script to launch the demo GUI. Click around,
it's mostly pretty intuitive but some documentation will come along in good time.
+You would typically want to edit the demo-cache-config.xml file to suit the features you hope to see in action. You
+also probably want to start several instances of the demo to watch how data replicates, and how the caches behave when
+instances leave the cluster nicely (the "stop cache" button) or not-so-nicely (kill the process).
+
+* Feedback
+----------
+
+Please provide all feedback on the JBoss Cache User Forum [2] for now. In future we may decide to set up a separate forum
+for this demo.
+
* Building the demo
-------------------
-You need to use Maven 2 to build the demo from sources. Simply check out the sources for the demo from http://anonsvn.jboss.org/repos/jbosscache/demos/core-demo-gui/trunk
+You need to use Maven 2 to build the demo from sources. Simply check out the sources for the demo from Subversion [3]
and build using "mvn clean install", which will generate the ZIP distribution in "target/distribution"
* Developing the demo
@@ -20,3 +30,7 @@
You need to use IntelliJ IDEA's UIDesigner to edit the Swing forms in this project. To generate IDEA project files,
run "mvn idea:idea" and then open the resulting project file in IntelliJ.
+
+[1] http://snapshots.jboss.org/maven2/org/jboss/cache/jbosscache-demo/1.0-SNA...
+[2] http://www.jboss.com/index.html?module=bb&op=viewforum&f=157
+[3] http://anonsvn.jboss.org/repos/jbosscache/demos/core-demo-gui/trunk
\ No newline at end of file
Modified: demos/core-demo-gui/trunk/pom.xml
===================================================================
--- demos/core-demo-gui/trunk/pom.xml 2008-01-22 01:11:44 UTC (rev 5178)
+++ demos/core-demo-gui/trunk/pom.xml 2008-01-22 01:19:43 UTC (rev 5179)
@@ -13,7 +13,7 @@
</parent>
<groupId>org.jboss.cache</groupId>
<artifactId>jbosscache-demo</artifactId>
- <version>1.0-SNAPSHOT</version>
+ <version>1.0.BETA1</version>
<name>JBoss Cache - Core Edition GUI Demo</name>
<description>JBoss Cache - Core Edition GUI Demo</description>
<packaging>jar</packaging>
@@ -21,7 +21,7 @@
<dependency>
<groupId>org.jboss.cache</groupId>
<artifactId>jbosscache-core</artifactId>
- <version>2.1.0-SNAPSHOT</version>
+ <version>2.1.0.CR3</version>
</dependency>
<dependency>
<groupId>jgoodies</groupId>
16 years, 11 months
JBoss Cache SVN: r5178 - core/trunk/src/test/java/org/jboss/cache/factories.
by jbosscache-commits@lists.jboss.org
Author: manik.surtani(a)jboss.com
Date: 2008-01-21 20:11:44 -0500 (Mon, 21 Jan 2008)
New Revision: 5178
Modified:
core/trunk/src/test/java/org/jboss/cache/factories/InterceptorChainFactoryTest.java
Log:
Fixed broken test (to go with InterceptorChainFactory optimisation)
Modified: core/trunk/src/test/java/org/jboss/cache/factories/InterceptorChainFactoryTest.java
===================================================================
--- core/trunk/src/test/java/org/jboss/cache/factories/InterceptorChainFactoryTest.java 2008-01-22 01:08:04 UTC (rev 5177)
+++ core/trunk/src/test/java/org/jboss/cache/factories/InterceptorChainFactoryTest.java 2008-01-22 01:11:44 UTC (rev 5178)
@@ -197,7 +197,6 @@
public void testOptimisticChain() throws Exception
{
- CacheSPI cache = (CacheSPI) new DefaultCacheFactory().createCache(false);
cache.getConfiguration().setExposeManagementStatistics(false);
cache.getConfiguration().setNodeLockingOptimistic(true);
@@ -223,7 +222,6 @@
public void testOptimisticReplicatedChain() throws Exception
{
- CacheSPI cache = (CacheSPI) new DefaultCacheFactory().createCache(false);
cache.getConfiguration().setExposeManagementStatistics(false);
cache.getConfiguration().setNodeLockingOptimistic(true);
cache.getConfiguration().setCacheMode("REPL_SYNC");
@@ -251,7 +249,6 @@
public void testOptimisticCacheLoaderChain() throws Exception
{
- CacheSPI cache = (CacheSPI) new DefaultCacheFactory().createCache(false);
cache.getConfiguration().setExposeManagementStatistics(false);
cache.getConfiguration().setNodeLockingOptimistic(true);
cache.getConfiguration().setCacheLoaderConfig(getCacheLoaderConfig(false, false));
@@ -267,8 +264,8 @@
assertEquals(InvocationContextInterceptor.class, interceptors.next().getClass());
assertEquals(TxInterceptor.class, interceptors.next().getClass());
assertEquals(NotificationInterceptor.class, interceptors.next().getClass());
- assertEquals(CacheStoreInterceptor.class, interceptors.next().getClass());
assertEquals(CacheLoaderInterceptor.class, interceptors.next().getClass());
+ assertEquals(CacheStoreInterceptor.class, interceptors.next().getClass());
assertEquals(OptimisticLockingInterceptor.class, interceptors.next().getClass());
assertEquals(OptimisticValidatorInterceptor.class, interceptors.next().getClass());
assertEquals(OptimisticCreateIfNotExistsInterceptor.class, interceptors.next().getClass());
@@ -280,7 +277,6 @@
public void testOptimisticPassivationCacheLoaderChain() throws Exception
{
- CacheSPI cache = (CacheSPI) new DefaultCacheFactory().createCache(false);
cache.getConfiguration().setExposeManagementStatistics(false);
cache.getConfiguration().setNodeLockingOptimistic(true);
cache.getConfiguration().setCacheLoaderConfig(getCacheLoaderConfig(true, false));
@@ -296,8 +292,8 @@
assertEquals(InvocationContextInterceptor.class, interceptors.next().getClass());
assertEquals(TxInterceptor.class, interceptors.next().getClass());
assertEquals(NotificationInterceptor.class, interceptors.next().getClass());
- assertEquals(PassivationInterceptor.class, interceptors.next().getClass());
assertEquals(ActivationInterceptor.class, interceptors.next().getClass());
+ assertEquals(PassivationInterceptor.class, interceptors.next().getClass());
assertEquals(OptimisticLockingInterceptor.class, interceptors.next().getClass());
assertEquals(OptimisticValidatorInterceptor.class, interceptors.next().getClass());
assertEquals(OptimisticCreateIfNotExistsInterceptor.class, interceptors.next().getClass());
@@ -309,7 +305,6 @@
public void testInvalidationInterceptorChain() throws Exception
{
- CacheSPI cache = (CacheSPI) new DefaultCacheFactory().createCache(false);
cache.getConfiguration().setExposeManagementStatistics(false);
cache.getConfiguration().setCacheMode("REPL_ASYNC");
@@ -332,7 +327,6 @@
// ok, my replication chain looks good.
// now for my invalidation chain.
- cache = (CacheSPI) new DefaultCacheFactory().createCache(false);
cache.getConfiguration().setExposeManagementStatistics(false);
cache.getConfiguration().setCacheMode("INVALIDATION_ASYNC");
chain = getInterceptorChainFactory(cache).buildInterceptorChain();
16 years, 11 months