[infinispan-commits] Infinispan SVN: r2240 - branches/4.1.x/core/src/main/java/org/infinispan/config.

infinispan-commits at lists.jboss.org infinispan-commits at lists.jboss.org
Tue Aug 17 08:10:24 EDT 2010


Author: galder.zamarreno at jboss.com
Date: 2010-08-17 08:10:23 -0400 (Tue, 17 Aug 2010)
New Revision: 2240

Modified:
   branches/4.1.x/core/src/main/java/org/infinispan/config/Configuration.java
Log:
[ISPN-606] (asyncMarshalling should be turned off by default to avoid reordering) Done.

Modified: branches/4.1.x/core/src/main/java/org/infinispan/config/Configuration.java
===================================================================
--- branches/4.1.x/core/src/main/java/org/infinispan/config/Configuration.java	2010-08-17 12:09:48 UTC (rev 2239)
+++ branches/4.1.x/core/src/main/java/org/infinispan/config/Configuration.java	2010-08-17 12:10:23 UTC (rev 2240)
@@ -1160,8 +1160,10 @@
        *             wakeup time in milliseconds." */
       protected Long replQueueInterval=5000L;
 
-      /** @configRef desc="If true, asynchronous marshalling is enabled which means that caller can return even quicker." */
-      protected Boolean asyncMarshalling=true;
+      /** @configRef desc="If true, asynchronous marshalling is enabled which means that caller can return even
+       *             quicker, but it can suffer from reordering of operations. You can find more information
+       *             <a href=&quot;http://community.jboss.org/docs/DOC-15725&quot;>here</a>" */
+      protected Boolean asyncMarshalling=false;
 
       private AsyncType(boolean readFromXml) {
          super();



More information about the infinispan-commits mailing list