[infinispan-commits] Infinispan SVN: r2275 - trunk/cachestore/cloud/src/main/java/org/infinispan/loaders/cloud.

infinispan-commits at lists.jboss.org infinispan-commits at lists.jboss.org
Mon Aug 23 10:26:06 EDT 2010


Author: manik.surtani at jboss.com
Date: 2010-08-23 10:26:05 -0400 (Mon, 23 Aug 2010)
New Revision: 2275

Modified:
   trunk/cachestore/cloud/src/main/java/org/infinispan/loaders/cloud/CloudCacheStoreConfig.java
Log:
[ISPN-614] (consider setting lazyPurgingOnly to false by default in cloud store)

Modified: trunk/cachestore/cloud/src/main/java/org/infinispan/loaders/cloud/CloudCacheStoreConfig.java
===================================================================
--- trunk/cachestore/cloud/src/main/java/org/infinispan/loaders/cloud/CloudCacheStoreConfig.java	2010-08-23 14:18:43 UTC (rev 2274)
+++ trunk/cachestore/cloud/src/main/java/org/infinispan/loaders/cloud/CloudCacheStoreConfig.java	2010-08-23 14:26:05 UTC (rev 2275)
@@ -21,7 +21,7 @@
  * <li><tt>requestTimeout</tt> - A timeout to use when communicating with the cloud storage
  * provider, in milliseconds. Defaults to 10000.</li>
  * <li><tt>lazyPurgingOnly</tt> - If enabled, then expired entries are only purged on access,
- * lazily, rather than by using the periodic eviction thread. Defaults to <tt>true</tt>.</li>
+ * lazily, rather than by using the periodic eviction thread. Defaults to <tt>false</tt>.</li>
  * <li><tt>cloudService</tt> - The cloud service to use. Supported values are <tt>s3</tt> (Amazon
  * AWS), <tt>cloudfiles</tt> (Rackspace Cloud), <tt>azureblob</tt> (Microsoft Azure), and
  * <tt>atmos</tt> (Atmos Online Storage Service).</li>
@@ -45,8 +45,7 @@
    private String proxyHost;
    private String proxyPort;
    private long requestTimeout = 10000;
-   // TODO Once ISPN-334 is closed, consider setting this to false by default.
-   private boolean lazyPurgingOnly = true;
+   private boolean lazyPurgingOnly = false;
    private String cloudService;
    private int maxConnections = 10000;
    private boolean secure = true;



More information about the infinispan-commits mailing list