You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@commons.apache.org by tv...@apache.org on 2020/10/05 15:51:02 UTC

svn commit: r1066425 - in /websites/production/commons/content/proper/commons-jcs: ./ getting_started/

Author: tv
Date: Mon Oct  5 15:51:02 2020
New Revision: 1066425

Log:
JCS-206: Update examples

Modified:
    websites/production/commons/content/proper/commons-jcs/BasicJCSConfiguration.html
    websites/production/commons/content/proper/commons-jcs/BlockDiskCache.html
    websites/production/commons/content/proper/commons-jcs/CacheEventLogging.html
    websites/production/commons/content/proper/commons-jcs/ElementAttributes.html
    websites/production/commons/content/proper/commons-jcs/ElementEventHandling.html
    websites/production/commons/content/proper/commons-jcs/IndexedDiskAuxCache.html
    websites/production/commons/content/proper/commons-jcs/IndexedDiskCacheProperties.html
    websites/production/commons/content/proper/commons-jcs/JCSvsEHCache.html
    websites/production/commons/content/proper/commons-jcs/JDBCDiskCache.html
    websites/production/commons/content/proper/commons-jcs/JDBCDiskCacheProperties.html
    websites/production/commons/content/proper/commons-jcs/LateralJavaGroupsAuxCache.html
    websites/production/commons/content/proper/commons-jcs/LateralTCPAuxCache.html
    websites/production/commons/content/proper/commons-jcs/LateralTCPProperties.html
    websites/production/commons/content/proper/commons-jcs/LateralUDPDiscovery.html
    websites/production/commons/content/proper/commons-jcs/LocalCacheConfig.html
    websites/production/commons/content/proper/commons-jcs/MySQLDiskCacheProperties.html
    websites/production/commons/content/proper/commons-jcs/RegionProperties.html
    websites/production/commons/content/proper/commons-jcs/RemoteAuxCache.html
    websites/production/commons/content/proper/commons-jcs/RemoteCacheProperties.html
    websites/production/commons/content/proper/commons-jcs/RemoteHttpCacheProperties.html
    websites/production/commons/content/proper/commons-jcs/UsingJCSBasicWeb.html
    websites/production/commons/content/proper/commons-jcs/getting_started/intro.html

Modified: websites/production/commons/content/proper/commons-jcs/BasicJCSConfiguration.html
==============================================================================
--- websites/production/commons/content/proper/commons-jcs/BasicJCSConfiguration.html (original)
+++ websites/production/commons/content/proper/commons-jcs/BasicJCSConfiguration.html Mon Oct  5 15:51:02 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 16 August 2020
+ | Generated by Apache Maven Doxia at 05 October 2020
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
@@ -8,7 +8,7 @@
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
             <meta name="author" content="Aaron Smuts" />
-                <meta name="Date-Revision-yyyymmdd" content="20200816" />
+                <meta name="Date-Revision-yyyymmdd" content="20201005" />
             <meta http-equiv="Content-Language" content="en" />
         <title>JCS &#x2013; Basic JCS Configuration</title>
 
@@ -40,7 +40,7 @@
           <a class="brand" href="http://commons.apache.org/proper/commons-jcs/">Apache Commons JCS &trade;</a>
           <ul class="nav">      
                     
-          <li id="publishDate">Last Published: 16 August 2020</li>
+          <li id="publishDate">Last Published: 05 October 2020</li>
     <li class="divider">|</li> <li id="projectVersion">Version: 3.0</li>
   </ul>
           <div class="pull-right">  <ul class="nav">
@@ -336,10 +336,10 @@
 
 jcs.default=
 jcs.default.cacheattributes=
-    org.apache.commons.jcs.engine.CompositeCacheAttributes
+    org.apache.commons.jcs3.engine.CompositeCacheAttributes
 jcs.default.cacheattributes.MaxObjects=1000
 jcs.default.cacheattributes.MemoryCacheName=
-    org.apache.commons.jcs.engine.memory.lru.LRUMemoryCache
+    org.apache.commons.jcs3.engine.memory.lru.LRUMemoryCache
         </pre></div>
         
 <p>
@@ -353,7 +353,7 @@ jcs.default.cacheattributes.UseMemoryShr
 jcs.default.cacheattributes.MaxMemoryIdleTimeSeconds=3600
 jcs.default.cacheattributes.ShrinkerIntervalSeconds=60
 jcs.default.cacheattributes.MaxSpoolPerRun=500
-jcs.default.elementattributes=org.apache.commons.jcs.engine.ElementAttributes
+jcs.default.elementattributes=org.apache.commons.jcs3.engine.ElementAttributes
 jcs.default.elementattributes.IsEternal=false
         </pre></div>
         
@@ -368,9 +368,9 @@ jcs.default.elementattributes.IsEternal=
 <div class="source">
 <pre>
 jcs.auxiliary.DC=
-    org.apache.commons.jcs.auxiliary.disk.indexed.IndexedDiskCacheFactory
+    org.apache.commons.jcs3.auxiliary.disk.indexed.IndexedDiskCacheFactory
 jcs.auxiliary.DC.attributes=
-    org.apache.commons.jcs.auxiliary.disk.indexed.IndexedDiskCacheAttributes
+    org.apache.commons.jcs3.auxiliary.disk.indexed.IndexedDiskCacheAttributes
 jcs.auxiliary.DC.attributes.DiskPath=g:/dev/jcs/raf
         </pre></div>
         
@@ -392,15 +392,15 @@ jcs.default=DC
 <pre>
 jcs.region.testCache1=DC
 jcs.region.testCache1.cacheattributes=
-    org.apache.commons.jcs.engine.CompositeCacheAttributes
+    org.apache.commons.jcs3.engine.CompositeCacheAttributes
 jcs.region.testCache1.cacheattributes.MaxObjects=1000
 jcs.region.testCache1.cacheattributes.MemoryCacheName=
-    org.apache.commons.jcs.engine.memory.lru.LRUMemoryCache
+    org.apache.commons.jcs3.engine.memory.lru.LRUMemoryCache
 jcs.region.testCache1.cacheattributes.UseMemoryShrinker=true
 jcs.region.testCache1.cacheattributes.MaxMemoryIdleTimeSeconds=3600
 jcs.region.testCache1.cacheattributes.ShrinkerIntervalSeconds=60
 jcs.region.testCache1.cacheattributes.MaxSpoolPerRun=500
-jcs.region.testCache1.elementattributes=org.apache.commons.jcs.engine.ElementAttributes
+jcs.region.testCache1.elementattributes=org.apache.commons.jcs3.engine.ElementAttributes
 jcs.region.testCache1.elementattributes.IsEternal=false
 
         </pre></div>
@@ -414,9 +414,9 @@ jcs.region.testCache1.elementattributes.
 <div class="source">
 <pre>
 jcs.auxiliary.LTCP=
-    org.apache.commons.jcs.auxiliary.lateral.LateralCacheFactory
+    org.apache.commons.jcs3.auxiliary.lateral.LateralCacheFactory
 jcs.auxiliary.LTCP.attributes=
-    org.apache.commons.jcs.auxiliary.lateral.LateralCacheAttributes
+    org.apache.commons.jcs3.auxiliary.lateral.LateralCacheAttributes
 jcs.auxiliary.LTCP.attributes.TransmissionTypeName=TCP
 jcs.auxiliary.LTCP.attributes.TcpServers=localhost:1111
 jcs.auxiliary.LTCP.attributes.TcpListenerPort=1110
@@ -465,39 +465,39 @@ jcs.region.testCache1=DC,LTCP
 
 jcs.default=DC,LTCP
 jcs.default.cacheattributes=
-    org.apache.commons.jcs.engine.CompositeCacheAttributes
+    org.apache.commons.jcs3.engine.CompositeCacheAttributes
 jcs.default.cacheattributes.MaxObjects=1000
 jcs.default.cacheattributes.MemoryCacheName=
-    org.apache.commons.jcs.engine.memory.lru.LRUMemoryCache
+    org.apache.commons.jcs3.engine.memory.lru.LRUMemoryCache
 
 # PRE-DEFINED CACHE REGIONS
 
 jcs.region.testCache1=DC,LTCP
 jcs.region.testCache1.cacheattributes=
-    org.apache.commons.jcs.engine.CompositeCacheAttributes
+    org.apache.commons.jcs3.engine.CompositeCacheAttributes
 jcs.region.testCache1.cacheattributes.MaxObjects=1000
 jcs.region.testCache1.cacheattributes.MemoryCacheName=
-    org.apache.commons.jcs.engine.memory.lru.LRUMemoryCache
+    org.apache.commons.jcs3.engine.memory.lru.LRUMemoryCache
 jcs.region.testCache1.cacheattributes.UseMemoryShrinker=true
 jcs.region.testCache1.cacheattributes.MaxMemoryIdleTimeSeconds=3600
 jcs.region.testCache1.cacheattributes.ShrinkerIntervalSeconds=60
 jcs.region.testCache1.cacheattributes.MaxSpoolPerRun=500
-jcs.region.testCache1.elementattributes=org.apache.commons.jcs.engine.ElementAttributes
+jcs.region.testCache1.elementattributes=org.apache.commons.jcs3.engine.ElementAttributes
 jcs.region.testCache1.elementattributes.IsEternal=false
 
 
 # AVAILABLE AUXILIARY CACHES
 jcs.auxiliary.DC=
-    org.apache.commons.jcs.auxiliary.disk.indexed.IndexedDiskCacheFactory
+    org.apache.commons.jcs3.auxiliary.disk.indexed.IndexedDiskCacheFactory
 jcs.auxiliary.DC.attributes=
-    org.apache.commons.jcs.auxiliary.disk.indexed.IndexedDiskCacheAttributes
+    org.apache.commons.jcs3.auxiliary.disk.indexed.IndexedDiskCacheAttributes
 jcs.auxiliary.DC.attributes.DiskPath=g:/dev/jcs/raf
 jcs.auxiliary.DC.attributes.maxKeySize=100000
 
 jcs.auxiliary.LTCP=
-    org.apache.commons.jcs.auxiliary.lateral.LateralCacheFactory
+    org.apache.commons.jcs3.auxiliary.lateral.LateralCacheFactory
 jcs.auxiliary.LTCP.attributes=
-    org.apache.commons.jcs.auxiliary.lateral.LateralCacheAttributes
+    org.apache.commons.jcs3.auxiliary.lateral.LateralCacheAttributes
 jcs.auxiliary.LTCP.attributes.TransmissionTypeName=TCP
 jcs.auxiliary.LTCP.attributes.TcpServers=localhost:1111
 jcs.auxiliary.LTCP.attributes.TcpListenerPort=1110

Modified: websites/production/commons/content/proper/commons-jcs/BlockDiskCache.html
==============================================================================
--- websites/production/commons/content/proper/commons-jcs/BlockDiskCache.html (original)
+++ websites/production/commons/content/proper/commons-jcs/BlockDiskCache.html Mon Oct  5 15:51:02 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 16 August 2020
+ | Generated by Apache Maven Doxia at 05 October 2020
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
@@ -8,7 +8,7 @@
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
             <meta name="author" content="Aaron Smuts" />
-                <meta name="Date-Revision-yyyymmdd" content="20200816" />
+                <meta name="Date-Revision-yyyymmdd" content="20201005" />
             <meta http-equiv="Content-Language" content="en" />
         <title>JCS &#x2013; Block Disk Cache</title>
 
@@ -40,7 +40,7 @@
           <a class="brand" href="http://commons.apache.org/proper/commons-jcs/">Apache Commons JCS &trade;</a>
           <ul class="nav">      
                     
-          <li id="publishDate">Last Published: 16 August 2020</li>
+          <li id="publishDate">Last Published: 05 October 2020</li>
     <li class="divider">|</li> <li id="projectVersion">Version: 3.0</li>
   </ul>
           <div class="pull-right">  <ul class="nav">
@@ -388,16 +388,16 @@
 ##### DEFAULT REGION  ########################################
 
 jcs.default=blockDiskCache
-jcs.default.cacheattributes=org.apache.commons.jcs.engine.CompositeCacheAttributes
+jcs.default.cacheattributes=org.apache.commons.jcs3.engine.CompositeCacheAttributes
 jcs.default.cacheattributes.MaxObjects=0
-jcs.default.cacheattributes.MemoryCacheName=org.apache.commons.jcs.engine.memory.lru.LRUMemoryCache
+jcs.default.cacheattributes.MemoryCacheName=org.apache.commons.jcs3.engine.memory.lru.LRUMemoryCache
 
 ##############################################################
 ##### AUXILIARY CACHES  ######################################
 
 # Block Disk Cache
-jcs.auxiliary.blockDiskCache=org.apache.commons.jcs.auxiliary.disk.block.BlockDiskCacheFactory
-jcs.auxiliary.blockDiskCache.attributes=org.apache.commons.jcs.auxiliary.disk.block.BlockDiskCacheAttributes
+jcs.auxiliary.blockDiskCache=org.apache.commons.jcs3.auxiliary.disk.block.BlockDiskCacheFactory
+jcs.auxiliary.blockDiskCache.attributes=org.apache.commons.jcs3.auxiliary.disk.block.BlockDiskCacheAttributes
 jcs.auxiliary.blockDiskCache.attributes.DiskPath=target/test-sandbox/block-disk-cache-huge
 jcs.auxiliary.blockDiskCache.attributes.MaxPurgatorySize=300000
 jcs.auxiliary.blockDiskCache.attributes.MaxKeySize=1000000

Modified: websites/production/commons/content/proper/commons-jcs/CacheEventLogging.html
==============================================================================
--- websites/production/commons/content/proper/commons-jcs/CacheEventLogging.html (original)
+++ websites/production/commons/content/proper/commons-jcs/CacheEventLogging.html Mon Oct  5 15:51:02 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 16 August 2020
+ | Generated by Apache Maven Doxia at 05 October 2020
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
@@ -8,7 +8,7 @@
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
             <meta name="author" content="Aaron Smuts" />
-                <meta name="Date-Revision-yyyymmdd" content="20200816" />
+                <meta name="Date-Revision-yyyymmdd" content="20201005" />
             <meta http-equiv="Content-Language" content="en" />
         <title>JCS &#x2013; Cache Event Logging</title>
 
@@ -40,7 +40,7 @@
           <a class="brand" href="http://commons.apache.org/proper/commons-jcs/">Apache Commons JCS &trade;</a>
           <ul class="nav">      
                     
-          <li id="publishDate">Last Published: 16 August 2020</li>
+          <li id="publishDate">Last Published: 05 October 2020</li>
     <li class="divider">|</li> <li id="projectVersion">Version: 3.0</li>
   </ul>
           <div class="pull-right">  <ul class="nav">
@@ -353,7 +353,7 @@
 			
 <p>
 				To inject a custom event logger, you simply need to implement the
-				org.apache.commons.jcs.engine.logging.behavior.ICacheEventLogger
+				org.apache.commons.jcs3.engine.logging.behavior.ICacheEventLogger
 				
 				interface and add a couple of lines to the cache.ccf file.
 			</p>
@@ -366,8 +366,8 @@
 <div class="source">
 <pre>
 			. . .
-			jcs.auxiliary.RC=org.apache.commons.jcs.auxiliary.remote.RemoteCacheFactory
-jcs.auxiliary.RC.attributes=org.apache.commons.jcs.auxiliary.remote.RemoteCacheAttributes
+			jcs.auxiliary.RC=org.apache.commons.jcs3.auxiliary.remote.RemoteCacheFactory
+jcs.auxiliary.RC.attributes=org.apache.commons.jcs3.auxiliary.remote.RemoteCacheAttributes
 jcs.auxiliary.RC.attributes.FailoverServers=localhost:1101,localhost:1102
 jcs.auxiliary.RC.attributes.LocalPort=1201
 jcs.auxiliary.RC.attributes.RemoveUponRemotePut=false
@@ -377,7 +377,7 @@ jcs.auxiliary.RC.attributes.RemoveUponRe
 jcs.auxiliary.RC.attributes.GetTimeoutMillis=500
 jcs.auxiliary.RC.attributes.ThreadPoolName=remote_cache_client
 jcs.auxiliary.RC.attributes.GetOnly=false
-jcs.auxiliary.RC.cacheeventlogger=org.apache.commons.jcs.engine.logging.CacheEventLoggerDebugLogger
+jcs.auxiliary.RC.cacheeventlogger=org.apache.commons.jcs3.engine.logging.CacheEventLoggerDebugLogger
 jcs.auxiliary.RC.cacheeventlogger.attributes.logCategoryName=test.RCCEventLogCategory
 			. . .
         </pre></div>

Modified: websites/production/commons/content/proper/commons-jcs/ElementAttributes.html
==============================================================================
--- websites/production/commons/content/proper/commons-jcs/ElementAttributes.html (original)
+++ websites/production/commons/content/proper/commons-jcs/ElementAttributes.html Mon Oct  5 15:51:02 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 16 August 2020
+ | Generated by Apache Maven Doxia at 05 October 2020
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
@@ -8,7 +8,7 @@
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
             <meta name="author" content="Aaron Smuts" />
-                <meta name="Date-Revision-yyyymmdd" content="20200816" />
+                <meta name="Date-Revision-yyyymmdd" content="20201005" />
             <meta http-equiv="Content-Language" content="en" />
         <title>JCS &#x2013; Element Attribute Configuration</title>
 
@@ -40,7 +40,7 @@
           <a class="brand" href="http://commons.apache.org/proper/commons-jcs/">Apache Commons JCS &trade;</a>
           <ul class="nav">      
                     
-          <li id="publishDate">Last Published: 16 August 2020</li>
+          <li id="publishDate">Last Published: 05 October 2020</li>
     <li class="divider">|</li> <li id="projectVersion">Version: 3.0</li>
   </ul>
           <div class="pull-right">  <ul class="nav">
@@ -339,14 +339,14 @@
 
 jcs.default=DC
 jcs.default.cacheattributes=
-    org.apache.commons.jcs.engine.CompositeCacheAttributes
+    org.apache.commons.jcs3.engine.CompositeCacheAttributes
 jcs.default.cacheattributes.MaxObjects=1000
 jcs.default.cacheattributes.MemoryCacheName=
-    org.apache.commons.jcs.engine.memory.lru.LRUMemoryCache
+    org.apache.commons.jcs3.engine.memory.lru.LRUMemoryCache
 jcs.default.cacheattributes.UseMemoryShrinker=true
 jcs.default.cacheattributes.MaxMemoryIdleTimeSeconds=3600
 jcs.default.cacheattributes.ShrinkerIntervalSeconds=60
-jcs.default.elementattributes=org.apache.commons.jcs.engine.ElementAttributes
+jcs.default.elementattributes=org.apache.commons.jcs3.engine.ElementAttributes
 jcs.default.elementattributes.IsEternal=false
 jcs.default.elementattributes.MaxLife=700
 jcs.default.elementattributes.IdleTime=1800

Modified: websites/production/commons/content/proper/commons-jcs/ElementEventHandling.html
==============================================================================
--- websites/production/commons/content/proper/commons-jcs/ElementEventHandling.html (original)
+++ websites/production/commons/content/proper/commons-jcs/ElementEventHandling.html Mon Oct  5 15:51:02 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 16 August 2020
+ | Generated by Apache Maven Doxia at 05 October 2020
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
@@ -8,7 +8,7 @@
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
             <meta name="author" content="Aaron Smuts" />
-                <meta name="Date-Revision-yyyymmdd" content="20200816" />
+                <meta name="Date-Revision-yyyymmdd" content="20201005" />
             <meta http-equiv="Content-Language" content="en" />
         <title>JCS &#x2013; Element Event Handling</title>
 
@@ -40,7 +40,7 @@
           <a class="brand" href="http://commons.apache.org/proper/commons-jcs/">Apache Commons JCS &trade;</a>
           <ul class="nav">      
                     
-          <li id="publishDate">Last Published: 16 August 2020</li>
+          <li id="publishDate">Last Published: 05 October 2020</li>
     <li class="divider">|</li> <li id="projectVersion">Version: 3.0</li>
   </ul>
           <div class="pull-right">  <ul class="nav">
@@ -337,7 +337,7 @@
 <p>
 				The various events that you can handle have all been
 				assigned integer codes. The codes are defined in the
-				org.apache.commons.jcs.engine.control.event.behavior.IElementEventConstants
+				org.apache.commons.jcs3.engine.control.event.behavior.IElementEventConstants
 				interface. The events are named descriptively and
 				include:
 			</p>
@@ -427,7 +427,7 @@
 			
 <p>
 				To create an event handler you must implement the
-				org.apache.commons.jcs.engine.control.event.behavior.IElementEventHandler
+				org.apache.commons.jcs3.engine.control.event.behavior.IElementEventHandler
 				interface. This interface contains only one method:
 			</p>
 			

Modified: websites/production/commons/content/proper/commons-jcs/IndexedDiskAuxCache.html
==============================================================================
--- websites/production/commons/content/proper/commons-jcs/IndexedDiskAuxCache.html (original)
+++ websites/production/commons/content/proper/commons-jcs/IndexedDiskAuxCache.html Mon Oct  5 15:51:02 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 16 August 2020
+ | Generated by Apache Maven Doxia at 05 October 2020
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
@@ -8,7 +8,7 @@
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
             <meta name="author" content="Aaron Smuts" />
-                <meta name="Date-Revision-yyyymmdd" content="20200816" />
+                <meta name="Date-Revision-yyyymmdd" content="20201005" />
             <meta http-equiv="Content-Language" content="en" />
         <title>JCS &#x2013; Indexed Disk Auxiliary Cache</title>
 
@@ -40,7 +40,7 @@
           <a class="brand" href="http://commons.apache.org/proper/commons-jcs/">Apache Commons JCS &trade;</a>
           <ul class="nav">      
                     
-          <li id="publishDate">Last Published: 16 August 2020</li>
+          <li id="publishDate">Last Published: 05 October 2020</li>
     <li class="divider">|</li> <li id="projectVersion">Version: 3.0</li>
   </ul>
           <div class="pull-right">  <ul class="nav">
@@ -454,9 +454,9 @@
 <div class="source">
 <pre>
 jcs.auxiliary.DC=
-    org.apache.commons.jcs.auxiliary.disk.indexed.IndexedDiskCacheFactory
+    org.apache.commons.jcs3.auxiliary.disk.indexed.IndexedDiskCacheFactory
 jcs.auxiliary.DC.attributes=
-    org.apache.commons.jcs.auxiliary.disk.indexed.IndexedDiskCacheAttributes
+    org.apache.commons.jcs3.auxiliary.disk.indexed.IndexedDiskCacheAttributes
 jcs.auxiliary.DC.attributes.DiskPath=g:\dev\jakarta-turbine-stratum\raf
 jcs.auxiliary.DC.attributes.MaxKeySize=100000
 </pre></div>
@@ -549,22 +549,22 @@ jcs.auxiliary.DC.attributes.OptimizeAtRe
 ##############################################################
 ##### Default Region Configuration
 jcs.default=DC
-jcs.default.cacheattributes=org.apache.commons.jcs.engine.CompositeCacheAttributes
+jcs.default.cacheattributes=org.apache.commons.jcs3.engine.CompositeCacheAttributes
 jcs.default.cacheattributes.MaxObjects=100
-jcs.default.cacheattributes.MemoryCacheName=org.apache.commons.jcs.engine.memory.lru.LRUMemoryCache
+jcs.default.cacheattributes.MemoryCacheName=org.apache.commons.jcs3.engine.memory.lru.LRUMemoryCache
 
 ##############################################################
 ##### CACHE REGIONS
 jcs.region.myRegion1=DC
-jcs.region.myRegion1.cacheattributes=org.apache.commons.jcs.engine.CompositeCacheAttributes
+jcs.region.myRegion1.cacheattributes=org.apache.commons.jcs3.engine.CompositeCacheAttributes
 jcs.region.myRegion1.cacheattributes.MaxObjects=1000
-jcs.region.myRegion1.cacheattributes.MemoryCacheName=org.apache.commons.jcs.engine.memory.lru.LRUMemoryCache
+jcs.region.myRegion1.cacheattributes.MemoryCacheName=org.apache.commons.jcs3.engine.memory.lru.LRUMemoryCache
 
 ##############################################################
 ##### AUXILIARY CACHES
 # Indexed Disk Cache
-jcs.auxiliary.DC=org.apache.commons.jcs.auxiliary.disk.indexed.IndexedDiskCacheFactory
-jcs.auxiliary.DC.attributes=org.apache.commons.jcs.auxiliary.disk.indexed.IndexedDiskCacheAttributes
+jcs.auxiliary.DC=org.apache.commons.jcs3.auxiliary.disk.indexed.IndexedDiskCacheFactory
+jcs.auxiliary.DC.attributes=org.apache.commons.jcs3.auxiliary.disk.indexed.IndexedDiskCacheAttributes
 jcs.auxiliary.DC.attributes.DiskPath=target/test-sandbox/indexed-disk-cache
 jcs.auxiliary.DC.attributes.MaxPurgatorySize=10000
 jcs.auxiliary.DC.attributes.MaxKeySize=10000
@@ -602,13 +602,13 @@ jcs.auxiliary.DC.attributes.DiskLimitTyp
 ################## DEFAULT CACHE REGION  #####################
 # sets the default aux value for any non configured caches
 jcs.default=DC2
-jcs.default.cacheattributes=org.apache.commons.jcs.engine.CompositeCacheAttributes
+jcs.default.cacheattributes=org.apache.commons.jcs3.engine.CompositeCacheAttributes
 jcs.default.cacheattributes.MaxObjects=200001
-jcs.default.cacheattributes.MemoryCacheName=org.apache.commons.jcs.engine.memory.lru.LRUMemoryCache
+jcs.default.cacheattributes.MemoryCacheName=org.apache.commons.jcs3.engine.memory.lru.LRUMemoryCache
 jcs.default.cacheattributes.UseMemoryShrinker=false
 jcs.default.cacheattributes.MaxMemoryIdleTimeSeconds=3600
 jcs.default.cacheattributes.ShrinkerIntervalSeconds=60
-jcs.default.elementattributes=org.apache.commons.jcs.engine.ElementAttributes
+jcs.default.elementattributes=org.apache.commons.jcs3.engine.ElementAttributes
 jcs.default.elementattributes.IsEternal=false
 jcs.default.elementattributes.MaxLife=700
 jcs.default.elementattributes.IdleTime=1800
@@ -626,8 +626,8 @@ jcs.default.elementattributes.IsLateral=
 # If you want to use a separate pool for each disk cache, either use
 # the single model or define a different auxiliary for each region and use the Pooled type.
 # SINGLE is generally best unless you have a huge # of regions.
-jcs.auxiliary.DC2=org.apache.commons.jcs.auxiliary.disk.indexed.IndexedDiskCacheFactory
-jcs.auxiliary.DC2.attributes=org.apache.commons.jcs.auxiliary.disk.indexed.IndexedDiskCacheAttributes
+jcs.auxiliary.DC2=org.apache.commons.jcs3.auxiliary.disk.indexed.IndexedDiskCacheFactory
+jcs.auxiliary.DC2.attributes=org.apache.commons.jcs3.auxiliary.disk.indexed.IndexedDiskCacheAttributes
 jcs.auxiliary.DC2.attributes.DiskPath=target/test-sandbox/raf
 jcs.auxiliary.DC2.attributes.MaxPurgatorySize=10000
 jcs.auxiliary.DC2.attributes.MaxKeySize=10000

Modified: websites/production/commons/content/proper/commons-jcs/IndexedDiskCacheProperties.html
==============================================================================
--- websites/production/commons/content/proper/commons-jcs/IndexedDiskCacheProperties.html (original)
+++ websites/production/commons/content/proper/commons-jcs/IndexedDiskCacheProperties.html Mon Oct  5 15:51:02 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 16 August 2020
+ | Generated by Apache Maven Doxia at 05 October 2020
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
@@ -8,7 +8,7 @@
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
             <meta name="author" content="Aaron Smuts" />
-                <meta name="Date-Revision-yyyymmdd" content="20200816" />
+                <meta name="Date-Revision-yyyymmdd" content="20201005" />
             <meta http-equiv="Content-Language" content="en" />
         <title>JCS &#x2013; Indexed Disk Cache Configuration</title>
 
@@ -40,7 +40,7 @@
           <a class="brand" href="http://commons.apache.org/proper/commons-jcs/">Apache Commons JCS &trade;</a>
           <ul class="nav">      
                     
-          <li id="publishDate">Last Published: 16 August 2020</li>
+          <li id="publishDate">Last Published: 05 October 2020</li>
     <li class="divider">|</li> <li id="projectVersion">Version: 3.0</li>
   </ul>
           <div class="pull-right">  <ul class="nav">
@@ -448,8 +448,8 @@
 <div class="source">
 <pre>
 					
-jcs.auxiliary.DC=org.apache.commons.jcs.auxiliary.disk.indexed.IndexedDiskCacheFactory
-jcs.auxiliary.DC.attributes=org.apache.commons.jcs.auxiliary.disk.indexed.IndexedDiskCacheAttributes
+jcs.auxiliary.DC=org.apache.commons.jcs3.auxiliary.disk.indexed.IndexedDiskCacheFactory
+jcs.auxiliary.DC.attributes=org.apache.commons.jcs3.auxiliary.disk.indexed.IndexedDiskCacheAttributes
 jcs.auxiliary.DC.attributes.DiskPath=target/test-sandbox/indexed-disk-cache
 jcs.auxiliary.DC.attributes.MaxPurgatorySize=10000
 jcs.auxiliary.DC.attributes.MaxKeySize=10000
@@ -514,8 +514,8 @@ jcs.auxiliary.DC.attributes.ClearDiskOnS
 <div class="source">
 <pre>
 					
-jcs.auxiliary.DC=org.apache.commons.jcs.auxiliary.disk.indexed.IndexedDiskCacheFactory
-jcs.auxiliary.DC.attributes=org.apache.commons.jcs.auxiliary.disk.indexed.IndexedDiskCacheAttributes
+jcs.auxiliary.DC=org.apache.commons.jcs3.auxiliary.disk.indexed.IndexedDiskCacheFactory
+jcs.auxiliary.DC.attributes=org.apache.commons.jcs3.auxiliary.disk.indexed.IndexedDiskCacheAttributes
 jcs.auxiliary.DC.attributes.DiskPath=target/test-sandbox/indexed-disk-cache
 jcs.auxiliary.DC.attributes.MaxPurgatorySize=10000
 jcs.auxiliary.DC.attributes.MaxKeySize=10000

Modified: websites/production/commons/content/proper/commons-jcs/JCSvsEHCache.html
==============================================================================
--- websites/production/commons/content/proper/commons-jcs/JCSvsEHCache.html (original)
+++ websites/production/commons/content/proper/commons-jcs/JCSvsEHCache.html Mon Oct  5 15:51:02 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 16 August 2020
+ | Generated by Apache Maven Doxia at 05 October 2020
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
@@ -8,7 +8,7 @@
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
             <meta name="author" content="Aaron Smuts" />
-                <meta name="Date-Revision-yyyymmdd" content="20200816" />
+                <meta name="Date-Revision-yyyymmdd" content="20201005" />
             <meta http-equiv="Content-Language" content="en" />
         <title>JCS &#x2013; JCS vs EHCache Performance</title>
 
@@ -40,7 +40,7 @@
           <a class="brand" href="http://commons.apache.org/proper/commons-jcs/">Apache Commons JCS &trade;</a>
           <ul class="nav">      
                     
-          <li id="publishDate">Last Published: 16 August 2020</li>
+          <li id="publishDate">Last Published: 05 October 2020</li>
     <li class="divider">|</li> <li id="projectVersion">Version: 3.0</li>
   </ul>
           <div class="pull-right">  <ul class="nav">
@@ -539,9 +539,9 @@ import net.sf.ehcache.Element;
 
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
-import org.apache.commons.jcs.engine.CompositeCacheAttributes;
-import org.apache.commons.jcs.engine.behavior.ICompositeCacheAttributes;
-import org.apache.commons.jcs.utils.struct.LRUMap;
+import org.apache.commons.jcs3.engine.CompositeCacheAttributes;
+import org.apache.commons.jcs3.engine.behavior.ICompositeCacheAttributes;
+import org.apache.commons.jcs3.utils.struct.LRUMap;
 
 /**
  * Compare JCS vs ehcache performance.

Modified: websites/production/commons/content/proper/commons-jcs/JDBCDiskCache.html
==============================================================================
--- websites/production/commons/content/proper/commons-jcs/JDBCDiskCache.html (original)
+++ websites/production/commons/content/proper/commons-jcs/JDBCDiskCache.html Mon Oct  5 15:51:02 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 16 August 2020
+ | Generated by Apache Maven Doxia at 05 October 2020
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
@@ -8,7 +8,7 @@
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
             <meta name="author" content="Aaron Smuts" />
-                <meta name="Date-Revision-yyyymmdd" content="20200816" />
+                <meta name="Date-Revision-yyyymmdd" content="20201005" />
             <meta http-equiv="Content-Language" content="en" />
         <title>JCS &#x2013; JDBC Disk Cache</title>
 
@@ -40,7 +40,7 @@
           <a class="brand" href="http://commons.apache.org/proper/commons-jcs/">Apache Commons JCS &trade;</a>
           <ul class="nav">      
                     
-          <li id="publishDate">Last Published: 16 August 2020</li>
+          <li id="publishDate">Last Published: 05 October 2020</li>
     <li class="divider">|</li> <li id="projectVersion">Version: 3.0</li>
   </ul>
           <div class="pull-right">  <ul class="nav">
@@ -366,13 +366,13 @@
 ################## DEFAULT CACHE REGION  #####################
 # sets the default aux value for any non configured caches
 jcs.default=MYSQL,RCluster
-jcs.default.cacheattributes=org.apache.commons.jcs.engine.CompositeCacheAttributes
+jcs.default.cacheattributes=org.apache.commons.jcs3.engine.CompositeCacheAttributes
 jcs.default.cacheattributes.MaxObjects=5000
-jcs.default.cacheattributes.MemoryCacheName=org.apache.commons.jcs.engine.memory.lru.LRUMemoryCache
+jcs.default.cacheattributes.MemoryCacheName=org.apache.commons.jcs3.engine.memory.lru.LRUMemoryCache
 jcs.default.cacheattributes.UseMemoryShrinker=true
 jcs.default.cacheattributes.MaxMemoryIdleTimeSeconds=7200
 jcs.default.cacheattributes.ShrinkerIntervalSeconds=60
-jcs.default.elementattributes=org.apache.commons.jcs.engine.ElementAttributes
+jcs.default.elementattributes=org.apache.commons.jcs3.engine.ElementAttributes
 jcs.default.elementattributes.IsEternal=false
 jcs.default.elementattributes.MaxLife=14400
 jcs.default.elementattributes.IdleTime=14400
@@ -386,8 +386,8 @@ jcs.default.elementattributes.IsLateral=
 ##############################################################
 ################## AUXILIARY CACHES AVAILABLE ################
 # MYSQL disk cache used for flight options
-jcs.auxiliary.MYSQL=org.apache.commons.jcs.auxiliary.disk.jdbc.JDBCDiskCacheFactory
-jcs.auxiliary.MYSQL.attributes=org.apache.commons.jcs.auxiliary.disk.jdbc.JDBCDiskCacheAttributes
+jcs.auxiliary.MYSQL=org.apache.commons.jcs3.auxiliary.disk.jdbc.JDBCDiskCacheFactory
+jcs.auxiliary.MYSQL.attributes=org.apache.commons.jcs3.auxiliary.disk.jdbc.JDBCDiskCacheAttributes
 jcs.auxiliary.MYSQL.attributes.userName=myUsername
 jcs.auxiliary.MYSQL.attributes.password=myPassword
 jcs.auxiliary.MYSQL.attributes.url=jdbc:mysql://localhost:3306/YOURDBNAME?autoReconnect=true
@@ -427,13 +427,13 @@ thread_pool.disk_cache_event_queue.start
 <pre>
 					
 jcs.default=JDBC_0
-jcs.default.cacheattributes=org.apache.commons.jcs.engine.CompositeCacheAttributes
+jcs.default.cacheattributes=org.apache.commons.jcs3.engine.CompositeCacheAttributes
 jcs.default.cacheattributes.MaxObjects=100
-jcs.default.cacheattributes.MemoryCacheName=org.apache.commons.jcs.engine.memory.lru.LRUMemoryCache
+jcs.default.cacheattributes.MemoryCacheName=org.apache.commons.jcs3.engine.memory.lru.LRUMemoryCache
 jcs.default.cacheattributes.UseMemoryShrinker=false
 jcs.default.cacheattributes.MaxMemoryIdleTimeSeconds=3600
 jcs.default.cacheattributes.ShrinkerIntervalSeconds=60
-jcs.default.elementattributes=org.apache.commons.jcs.engine.ElementAttributes
+jcs.default.elementattributes=org.apache.commons.jcs3.engine.ElementAttributes
 jcs.default.elementattributes.IsEternal=false
 jcs.default.elementattributes.MaxLife=700
 jcs.default.elementattributes.IdleTime=1800
@@ -450,8 +450,8 @@ jcs.region.testCache1.cacheattributes.Ma
 # #############################################################
 # ################# AUXILIARY CACHES AVAILABLE ################
 # JDBC disk cache
-jcs.auxiliary.JDBC_0=org.apache.commons.jcs.auxiliary.disk.jdbc.JDBCDiskCacheFactory
-jcs.auxiliary.JDBC_0.attributes=org.apache.commons.jcs.auxiliary.disk.jdbc.JDBCDiskCacheAttributes
+jcs.auxiliary.JDBC_0=org.apache.commons.jcs3.auxiliary.disk.jdbc.JDBCDiskCacheFactory
+jcs.auxiliary.JDBC_0.attributes=org.apache.commons.jcs3.auxiliary.disk.jdbc.JDBCDiskCacheAttributes
 jcs.auxiliary.JDBC_0.attributes.tableName=JCS_STORE_0
 jcs.auxiliary.JDBC_0.attributes.testBeforeInsert=false
 jcs.auxiliary.JDBC_0.attributes.allowRemoveAll=true
@@ -460,8 +460,8 @@ jcs.auxiliary.JDBC_0.attributes.connecti
 jcs.auxiliary.JDBC_0.attributes.EventQueueType=POOLED
 jcs.auxiliary.JDBC_0.attributes.EventQueuePoolName=disk_cache_event_queue
 
-jcs.auxiliary.JDBC_1=org.apache.commons.jcs.auxiliary.disk.jdbc.JDBCDiskCacheFactory
-jcs.auxiliary.JDBC_1.attributes=org.apache.commons.jcs.auxiliary.disk.jdbc.JDBCDiskCacheAttributes
+jcs.auxiliary.JDBC_1=org.apache.commons.jcs3.auxiliary.disk.jdbc.JDBCDiskCacheFactory
+jcs.auxiliary.JDBC_1.attributes=org.apache.commons.jcs3.auxiliary.disk.jdbc.JDBCDiskCacheAttributes
 jcs.auxiliary.JDBC_1.attributes.tableName=JCS_STORE_1
 jcs.auxiliary.JDBC_1.attributes.testBeforeInsert=false
 jcs.auxiliary.JDBC_1.attributes.allowRemoveAll=true
@@ -505,13 +505,13 @@ thread_pool.disk_cache_event_queue.start
 <pre>
                     
 jcs.default=JDBC_0
-jcs.default.cacheattributes=org.apache.commons.jcs.engine.CompositeCacheAttributes
+jcs.default.cacheattributes=org.apache.commons.jcs3.engine.CompositeCacheAttributes
 jcs.default.cacheattributes.MaxObjects=100
-jcs.default.cacheattributes.MemoryCacheName=org.apache.commons.jcs.engine.memory.lru.LRUMemoryCache
+jcs.default.cacheattributes.MemoryCacheName=org.apache.commons.jcs3.engine.memory.lru.LRUMemoryCache
 jcs.default.cacheattributes.UseMemoryShrinker=false
 jcs.default.cacheattributes.MaxMemoryIdleTimeSeconds=3600
 jcs.default.cacheattributes.ShrinkerIntervalSeconds=60
-jcs.default.elementattributes=org.apache.commons.jcs.engine.ElementAttributes
+jcs.default.elementattributes=org.apache.commons.jcs3.engine.ElementAttributes
 jcs.default.elementattributes.IsEternal=false
 jcs.default.elementattributes.MaxLife=700
 jcs.default.elementattributes.IdleTime=1800
@@ -528,8 +528,8 @@ jcs.region.testCache1.cacheattributes.Ma
 # #############################################################
 # ################# AUXILIARY CACHES AVAILABLE ################
 # JDBC disk cache
-jcs.auxiliary.JDBC_0=org.apache.commons.jcs.auxiliary.disk.jdbc.JDBCDiskCacheFactory
-jcs.auxiliary.JDBC_0.attributes=org.apache.commons.jcs.auxiliary.disk.jdbc.JDBCDiskCacheAttributes
+jcs.auxiliary.JDBC_0=org.apache.commons.jcs3.auxiliary.disk.jdbc.JDBCDiskCacheFactory
+jcs.auxiliary.JDBC_0.attributes=org.apache.commons.jcs3.auxiliary.disk.jdbc.JDBCDiskCacheAttributes
 jcs.auxiliary.JDBC_0.attributes.tableName=JCS_STORE_0
 jcs.auxiliary.JDBC_0.attributes.testBeforeInsert=false
 jcs.auxiliary.JDBC_0.attributes.allowRemoveAll=true
@@ -538,8 +538,8 @@ jcs.auxiliary.JDBC_0.attributes.connecti
 jcs.auxiliary.JDBC_0.attributes.EventQueueType=POOLED
 jcs.auxiliary.JDBC_0.attributes.EventQueuePoolName=disk_cache_event_queue
 
-jcs.auxiliary.JDBC_1=org.apache.commons.jcs.auxiliary.disk.jdbc.JDBCDiskCacheFactory
-jcs.auxiliary.JDBC_1.attributes=org.apache.commons.jcs.auxiliary.disk.jdbc.JDBCDiskCacheAttributes
+jcs.auxiliary.JDBC_1=org.apache.commons.jcs3.auxiliary.disk.jdbc.JDBCDiskCacheFactory
+jcs.auxiliary.JDBC_1.attributes=org.apache.commons.jcs3.auxiliary.disk.jdbc.JDBCDiskCacheAttributes
 jcs.auxiliary.JDBC_1.attributes.tableName=JCS_STORE_1
 jcs.auxiliary.JDBC_1.attributes.testBeforeInsert=false
 jcs.auxiliary.JDBC_1.attributes.allowRemoveAll=true

Modified: websites/production/commons/content/proper/commons-jcs/JDBCDiskCacheProperties.html
==============================================================================
--- websites/production/commons/content/proper/commons-jcs/JDBCDiskCacheProperties.html (original)
+++ websites/production/commons/content/proper/commons-jcs/JDBCDiskCacheProperties.html Mon Oct  5 15:51:02 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 16 August 2020
+ | Generated by Apache Maven Doxia at 05 October 2020
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
@@ -8,7 +8,7 @@
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
             <meta name="author" content="Aaron Smuts" />
-                <meta name="Date-Revision-yyyymmdd" content="20200816" />
+                <meta name="Date-Revision-yyyymmdd" content="20201005" />
             <meta http-equiv="Content-Language" content="en" />
         <title>JCS &#x2013; JDBC Disk Cache Configuration</title>
 
@@ -40,7 +40,7 @@
           <a class="brand" href="http://commons.apache.org/proper/commons-jcs/">Apache Commons JCS &trade;</a>
           <ul class="nav">      
                     
-          <li id="publishDate">Last Published: 16 August 2020</li>
+          <li id="publishDate">Last Published: 05 October 2020</li>
     <li class="divider">|</li> <li id="projectVersion">Version: 3.0</li>
   </ul>
           <div class="pull-right">  <ul class="nav">
@@ -575,8 +575,8 @@
 ##############################################################
 ################## AUXILIARY CACHES AVAILABLE ################
 # JDBC disk cache
-jcs.auxiliary.JDBC=org.apache.commons.jcs.auxiliary.disk.jdbc.JDBCDiskCacheFactory
-jcs.auxiliary.JDBC.attributes=org.apache.commons.jcs.auxiliary.disk.jdbc.JDBCDiskCacheAttributes
+jcs.auxiliary.JDBC=org.apache.commons.jcs3.auxiliary.disk.jdbc.JDBCDiskCacheFactory
+jcs.auxiliary.JDBC.attributes=org.apache.commons.jcs3.auxiliary.disk.jdbc.JDBCDiskCacheAttributes
 jcs.auxiliary.JDBC.attributes.userName=sa
 jcs.auxiliary.JDBC.attributes.password=
 jcs.auxiliary.JDBC.attributes.url=jdbc:hsqldb:
@@ -663,8 +663,8 @@ jcs.auxiliary.JDBC.attributes.ShrinkerIn
 ##############################################################
 ################## AUXILIARY CACHES AVAILABLE ################
 # JDBC disk cache
-jcs.auxiliary.JDBC=org.apache.commons.jcs.auxiliary.disk.jdbc.JDBCDiskCacheFactory
-jcs.auxiliary.JDBC.attributes=org.apache.commons.jcs.auxiliary.disk.jdbc.JDBCDiskCacheAttributes
+jcs.auxiliary.JDBC=org.apache.commons.jcs3.auxiliary.disk.jdbc.JDBCDiskCacheFactory
+jcs.auxiliary.JDBC.attributes=org.apache.commons.jcs3.auxiliary.disk.jdbc.JDBCDiskCacheAttributes
 jcs.auxiliary.JDBC.attributes.userName=sa
 jcs.auxiliary.JDBC.attributes.password=
 jcs.auxiliary.JDBC.attributes.url=jdbc:hsqldb:

Modified: websites/production/commons/content/proper/commons-jcs/LateralJavaGroupsAuxCache.html
==============================================================================
--- websites/production/commons/content/proper/commons-jcs/LateralJavaGroupsAuxCache.html (original)
+++ websites/production/commons/content/proper/commons-jcs/LateralJavaGroupsAuxCache.html Mon Oct  5 15:51:02 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 16 August 2020
+ | Generated by Apache Maven Doxia at 05 October 2020
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
@@ -8,7 +8,7 @@
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
             <meta name="author" content="Aaron Smuts" />
-                <meta name="Date-Revision-yyyymmdd" content="20200816" />
+                <meta name="Date-Revision-yyyymmdd" content="20201005" />
             <meta http-equiv="Content-Language" content="en" />
         <title>JCS &#x2013; Lateral JGroups Auxiliary Cache</title>
 
@@ -40,7 +40,7 @@
           <a class="brand" href="http://commons.apache.org/proper/commons-jcs/">Apache Commons JCS &trade;</a>
           <ul class="nav">      
                     
-          <li id="publishDate">Last Published: 16 August 2020</li>
+          <li id="publishDate">Last Published: 05 October 2020</li>
     <li class="divider">|</li> <li id="projectVersion">Version: 3.0</li>
   </ul>
           <div class="pull-right">  <ul class="nav">
@@ -367,8 +367,8 @@
 <div class="source">
 <pre>
 # Lateral JavaGroups Distribution
-jcs.auxiliary.LJG=org.apache.commons.jcs.auxiliary.lateral.LateralCacheFactory
-jcs.auxiliary.LJG.attributes=org.apache.commons.jcs.auxiliary.lateral.LateralCacheAttributes
+jcs.auxiliary.LJG=org.apache.commons.jcs3.auxiliary.lateral.LateralCacheFactory
+jcs.auxiliary.LJG.attributes=org.apache.commons.jcs3.auxiliary.lateral.LateralCacheAttributes
 jcs.auxiliary.LJG.attributes.TransmissionTypeName=JAVAGROUPS
 jcs.auxiliary.LJG.attributes.PutOnlyMode=true
 jcs.auxiliary.LJG.attributes.JGChannelProperties=UDP(mcast_addr=224.0.0.100;mcast_port=7501):PING:FD:STABLE:NAKACK:UNICAST:FRAG:FLUSH:GMS:QUEUE

Modified: websites/production/commons/content/proper/commons-jcs/LateralTCPAuxCache.html
==============================================================================
--- websites/production/commons/content/proper/commons-jcs/LateralTCPAuxCache.html (original)
+++ websites/production/commons/content/proper/commons-jcs/LateralTCPAuxCache.html Mon Oct  5 15:51:02 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 16 August 2020
+ | Generated by Apache Maven Doxia at 05 October 2020
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
@@ -9,7 +9,7 @@
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
             <meta name="author" content="Pete Kazmier" />
         <meta name="author" content="Aaron Smuts" />
-                <meta name="Date-Revision-yyyymmdd" content="20200816" />
+                <meta name="Date-Revision-yyyymmdd" content="20201005" />
             <meta http-equiv="Content-Language" content="en" />
         <title>JCS &#x2013; Lateral TCP Auxiliary Cache</title>
 
@@ -41,7 +41,7 @@
           <a class="brand" href="http://commons.apache.org/proper/commons-jcs/">Apache Commons JCS &trade;</a>
           <ul class="nav">      
                     
-          <li id="publishDate">Last Published: 16 August 2020</li>
+          <li id="publishDate">Last Published: 05 October 2020</li>
     <li class="divider">|</li> <li id="projectVersion">Version: 3.0</li>
   </ul>
           <div class="pull-right">  <ul class="nav">
@@ -392,8 +392,8 @@
         
 <div class="source">
 <pre>
-jcs.auxiliary.LTCP=org.apache.commons.jcs.auxiliary.lateral.socket.tcp.LateralTCPCacheFactory
-jcs.auxiliary.LTCP.attributes=org.apache.commons.jcs.auxiliary.lateral.socket.tcp.TCPLateralCacheAttributes
+jcs.auxiliary.LTCP=org.apache.commons.jcs3.auxiliary.lateral.socket.tcp.LateralTCPCacheFactory
+jcs.auxiliary.LTCP.attributes=org.apache.commons.jcs3.auxiliary.lateral.socket.tcp.TCPLateralCacheAttributes
 jcs.auxiliary.LTCP.attributes.TcpServers=localhost:1111,localhost:1112
 jcs.auxiliary.LTCP.attributes.TcpListenerPort=1110
 jcs.auxiliary.LTCP.attributes.AllowGet=true
@@ -432,8 +432,8 @@ jcs.auxiliary.LTCP.attributes.AllowGet=t
         
 <div class="source">
 <pre>
-jcs.auxiliary.LTCP=org.apache.commons.jcs.auxiliary.lateral.socket.tcp.LateralTCPCacheFactory
-jcs.auxiliary.LTCP.attributes=org.apache.commons.jcs.auxiliary.lateral.socket.tcp.TCPLateralCacheAttributes
+jcs.auxiliary.LTCP=org.apache.commons.jcs3.auxiliary.lateral.socket.tcp.LateralTCPCacheFactory
+jcs.auxiliary.LTCP.attributes=org.apache.commons.jcs3.auxiliary.lateral.socket.tcp.TCPLateralCacheAttributes
 #jcs.auxiliary.LTCP.attributes.TcpServers=
 jcs.auxiliary.LTCP.attributes.TcpListenerPort=1118
 jcs.auxiliary.LTCP.attributes.UdpDiscoveryAddr=228.5.6.8

Modified: websites/production/commons/content/proper/commons-jcs/LateralTCPProperties.html
==============================================================================
--- websites/production/commons/content/proper/commons-jcs/LateralTCPProperties.html (original)
+++ websites/production/commons/content/proper/commons-jcs/LateralTCPProperties.html Mon Oct  5 15:51:02 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 16 August 2020
+ | Generated by Apache Maven Doxia at 05 October 2020
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
@@ -8,7 +8,7 @@
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
             <meta name="author" content="Aaron Smuts" />
-                <meta name="Date-Revision-yyyymmdd" content="20200816" />
+                <meta name="Date-Revision-yyyymmdd" content="20201005" />
             <meta http-equiv="Content-Language" content="en" />
         <title>JCS &#x2013; Lateral TCP Auxiliary Cache Configuration</title>
 
@@ -40,7 +40,7 @@
           <a class="brand" href="http://commons.apache.org/proper/commons-jcs/">Apache Commons JCS &trade;</a>
           <ul class="nav">      
                     
-          <li id="publishDate">Last Published: 16 August 2020</li>
+          <li id="publishDate">Last Published: 05 October 2020</li>
     <li class="divider">|</li> <li id="projectVersion">Version: 3.0</li>
   </ul>
           <div class="pull-right">  <ul class="nav">
@@ -532,8 +532,8 @@
 				
 <div class="source">
 <pre>
-jcs.auxiliary.LTCP=org.apache.commons.jcs.auxiliary.lateral.socket.tcp.LateralTCPCacheFactory
-jcs.auxiliary.LTCP.attributes=org.apache.commons.jcs.auxiliary.lateral.socket.tcp.TCPLateralCacheAttributes
+jcs.auxiliary.LTCP=org.apache.commons.jcs3.auxiliary.lateral.socket.tcp.LateralTCPCacheFactory
+jcs.auxiliary.LTCP.attributes=org.apache.commons.jcs3.auxiliary.lateral.socket.tcp.TCPLateralCacheAttributes
 #jcs.auxiliary.LTCP.attributes.TcpServers=
 jcs.auxiliary.LTCP.attributes.TcpListenerPort=1118
 jcs.auxiliary.LTCP.attributes.UdpDiscoveryAddr=228.5.6.8

Modified: websites/production/commons/content/proper/commons-jcs/LateralUDPDiscovery.html
==============================================================================
--- websites/production/commons/content/proper/commons-jcs/LateralUDPDiscovery.html (original)
+++ websites/production/commons/content/proper/commons-jcs/LateralUDPDiscovery.html Mon Oct  5 15:51:02 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 16 August 2020
+ | Generated by Apache Maven Doxia at 05 October 2020
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
@@ -8,7 +8,7 @@
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
             <meta name="author" content="Aaron Smuts" />
-                <meta name="Date-Revision-yyyymmdd" content="20200816" />
+                <meta name="Date-Revision-yyyymmdd" content="20201005" />
             <meta http-equiv="Content-Language" content="en" />
         <title>JCS &#x2013; Lateral UDP Discovery</title>
 
@@ -40,7 +40,7 @@
           <a class="brand" href="http://commons.apache.org/proper/commons-jcs/">Apache Commons JCS &trade;</a>
           <ul class="nav">      
                     
-          <li id="publishDate">Last Published: 16 August 2020</li>
+          <li id="publishDate">Last Published: 05 October 2020</li>
     <li class="divider">|</li> <li id="projectVersion">Version: 3.0</li>
   </ul>
           <div class="pull-right">  <ul class="nav">
@@ -384,8 +384,8 @@
         
 <div class="source">
 <pre>
-jcs.auxiliary.LTCP=org.apache.commons.jcs.auxiliary.lateral.socket.tcp.LateralTCPCacheFactory
-jcs.auxiliary.LTCP.attributes=org.apache.commons.jcs.auxiliary.lateral.socket.tcp.TCPLateralCacheAttributes
+jcs.auxiliary.LTCP=org.apache.commons.jcs3.auxiliary.lateral.socket.tcp.LateralTCPCacheFactory
+jcs.auxiliary.LTCP.attributes=org.apache.commons.jcs3.auxiliary.lateral.socket.tcp.TCPLateralCacheAttributes
 jcs.auxiliary.LTCP.attributes.TcpListenerPort=1110
 jcs.auxiliary.LTCP.attributes.PutOnlyMode=true
 jcs.auxiliary.LTCP.attributes.UdpDiscoveryAddr=228.5.6.8
@@ -412,8 +412,8 @@ jcs.auxiliary.LTCP.attributes.UdpTTL=4
         
 <div class="source">
 <pre>
-jcs.auxiliary.LTCP=org.apache.commons.jcs.auxiliary.lateral.socket.tcp.LateralTCPCacheFactory
-jcs.auxiliary.LTCP.attributes=org.apache.commons.jcs.auxiliary.lateral.socket.tcp.TCPLateralCacheAttributes
+jcs.auxiliary.LTCP=org.apache.commons.jcs3.auxiliary.lateral.socket.tcp.LateralTCPCacheFactory
+jcs.auxiliary.LTCP.attributes=org.apache.commons.jcs3.auxiliary.lateral.socket.tcp.TCPLateralCacheAttributes
 jcs.auxiliary.LTCP.attributes.TcpListenerPort=1110
 jcs.auxiliary.LTCP.attributes.PutOnlyMode=true
 jcs.auxiliary.LTCP.attributes.UdpDiscoveryInterface=en0

Modified: websites/production/commons/content/proper/commons-jcs/LocalCacheConfig.html
==============================================================================
--- websites/production/commons/content/proper/commons-jcs/LocalCacheConfig.html (original)
+++ websites/production/commons/content/proper/commons-jcs/LocalCacheConfig.html Mon Oct  5 15:51:02 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 16 August 2020
+ | Generated by Apache Maven Doxia at 05 October 2020
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
@@ -9,7 +9,7 @@
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
             <meta name="author" content="Pete Kazmier" />
         <meta name="author" content="Aaron Smuts" />
-                <meta name="Date-Revision-yyyymmdd" content="20200816" />
+                <meta name="Date-Revision-yyyymmdd" content="20201005" />
             <meta http-equiv="Content-Language" content="en" />
         <title>JCS &#x2013; Configuring the Local Cache</title>
 
@@ -41,7 +41,7 @@
           <a class="brand" href="http://commons.apache.org/proper/commons-jcs/">Apache Commons JCS &trade;</a>
           <ul class="nav">      
                     
-          <li id="publishDate">Last Published: 16 August 2020</li>
+          <li id="publishDate">Last Published: 05 October 2020</li>
     <li class="divider">|</li> <li id="projectVersion">Version: 3.0</li>
   </ul>
           <div class="pull-right">  <ul class="nav">
@@ -375,7 +375,7 @@
 # sets the default aux value for any non configured caches
 jcs.default=DC,RFailover
 jcs.default.cacheattributes=
-    org.apache.commons.jcs.engine.CompositeCacheAttributes
+    org.apache.commons.jcs3.engine.CompositeCacheAttributes
 jcs.default.cacheattributes.MaxObjects=1000
         </pre></div>
         
@@ -404,7 +404,7 @@ jcs.default.cacheattributes.MaxObjects=1
 <pre>
 jcs.region.testCache=DC,RFailover
 jcs.region.testCache.cacheattributes=
-    org.apache.commons.jcs.engine.CompositeCacheAttributes
+    org.apache.commons.jcs3.engine.CompositeCacheAttributes
 jcs.region.testCache.cacheattributes.MaxObjects=1000
         </pre></div>
         
@@ -446,9 +446,9 @@ jcs.region.testCache.cacheattributes.Max
 <div class="source">
 <pre>
 jcs.auxiliary.DC=
-    org.apache.commons.jcs.auxiliary.disk.DiskCacheFactory
+    org.apache.commons.jcs3.auxiliary.disk.DiskCacheFactory
 jcs.auxiliary.DC.attributes=
-    org.apache.commons.jcs.auxiliary.disk.DiskCacheAttributes
+    org.apache.commons.jcs3.auxiliary.disk.DiskCacheAttributes
 jcs.auxiliary.DC.attributes.DiskPath=c:/dev/cache/raf
         </pre></div>
         
@@ -467,9 +467,9 @@ jcs.auxiliary.DC.attributes.DiskPath=c:/
 <div class="source">
 <pre>
 jcs.auxiliary.RFailover=
-    org.apache.commons.jcs.auxiliary.remote.RemoteCacheFactory
+    org.apache.commons.jcs3.auxiliary.remote.RemoteCacheFactory
 jcs.auxiliary.RFailover.attributes=
-    org.apache.commons.jcs.auxiliary.remote.RemoteCacheAttributes
+    org.apache.commons.jcs3.auxiliary.remote.RemoteCacheAttributes
 jcs.auxiliary.RFailover.attributes.RemoteTypeName=LOCAL
 jcs.auxiliary.RFailover.attributes.FailoverServers=
     localhost:1102,localhost:1101

Modified: websites/production/commons/content/proper/commons-jcs/MySQLDiskCacheProperties.html
==============================================================================
--- websites/production/commons/content/proper/commons-jcs/MySQLDiskCacheProperties.html (original)
+++ websites/production/commons/content/proper/commons-jcs/MySQLDiskCacheProperties.html Mon Oct  5 15:51:02 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 16 August 2020
+ | Generated by Apache Maven Doxia at 05 October 2020
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
@@ -8,7 +8,7 @@
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
             <meta name="author" content="Aaron Smuts" />
-                <meta name="Date-Revision-yyyymmdd" content="20200816" />
+                <meta name="Date-Revision-yyyymmdd" content="20201005" />
             <meta http-equiv="Content-Language" content="en" />
         <title>JCS &#x2013; MySQL Disk Cache Configuration</title>
 
@@ -40,7 +40,7 @@
           <a class="brand" href="http://commons.apache.org/proper/commons-jcs/">Apache Commons JCS &trade;</a>
           <ul class="nav">      
                     
-          <li id="publishDate">Last Published: 16 August 2020</li>
+          <li id="publishDate">Last Published: 05 October 2020</li>
     <li class="divider">|</li> <li id="projectVersion">Version: 3.0</li>
   </ul>
           <div class="pull-right">  <ul class="nav">
@@ -430,8 +430,8 @@
 ##############################################################
 ################## AUXILIARY CACHES AVAILABLE ################
 # MYSQL disk cache
-jcs.auxiliary.MYSQL=org.apache.commons.jcs.auxiliary.disk.jdbc.mysql.MySQLDiskCacheFactory
-jcs.auxiliary.MYSQL.attributes=org.apache.commons.jcs.auxiliary.disk.jdbc.mysql.MySQLDiskCacheAttributes
+jcs.auxiliary.MYSQL=org.apache.commons.jcs3.auxiliary.disk.jdbc.mysql.MySQLDiskCacheFactory
+jcs.auxiliary.MYSQL.attributes=org.apache.commons.jcs3.auxiliary.disk.jdbc.mysql.MySQLDiskCacheAttributes
 jcs.auxiliary.MYSQL.attributes.userName=sa
 jcs.auxiliary.MYSQL.attributes.password=
 jcs.auxiliary.MYSQL.attributes.url=jdbc:hsqldb:target/cache_hsql_db
@@ -517,8 +517,8 @@ jcs.auxiliary.MYSQL.attributes.balkDurin
 ##############################################################
 ################## AUXILIARY CACHES AVAILABLE ################
 # MYSQL disk cache
-jcs.auxiliary.MYSQL=org.apache.commons.jcs.auxiliary.disk.jdbc.mysql.MySQLDiskCacheFactory
-jcs.auxiliary.MYSQL.attributes=org.apache.commons.jcs.auxiliary.disk.jdbc.mysql.MySQLDiskCacheAttributes
+jcs.auxiliary.MYSQL=org.apache.commons.jcs3.auxiliary.disk.jdbc.mysql.MySQLDiskCacheFactory
+jcs.auxiliary.MYSQL.attributes=org.apache.commons.jcs3.auxiliary.disk.jdbc.mysql.MySQLDiskCacheAttributes
 jcs.auxiliary.MYSQL.attributes.userName=sa
 jcs.auxiliary.MYSQL.attributes.password=
 jcs.auxiliary.MYSQL.attributes.url=jdbc:hsqldb:target/cache_hsql_db

Modified: websites/production/commons/content/proper/commons-jcs/RegionProperties.html
==============================================================================
--- websites/production/commons/content/proper/commons-jcs/RegionProperties.html (original)
+++ websites/production/commons/content/proper/commons-jcs/RegionProperties.html Mon Oct  5 15:51:02 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 16 August 2020
+ | Generated by Apache Maven Doxia at 05 October 2020
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
@@ -8,7 +8,7 @@
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
             <meta name="author" content="Aaron Smuts" />
-                <meta name="Date-Revision-yyyymmdd" content="20200816" />
+                <meta name="Date-Revision-yyyymmdd" content="20201005" />
             <meta http-equiv="Content-Language" content="en" />
         <title>JCS &#x2013; Cache Region Configuration</title>
 
@@ -40,7 +40,7 @@
           <a class="brand" href="http://commons.apache.org/proper/commons-jcs/">Apache Commons JCS &trade;</a>
           <ul class="nav">      
                     
-          <li id="publishDate">Last Published: 16 August 2020</li>
+          <li id="publishDate">Last Published: 05 October 2020</li>
     <li class="divider">|</li> <li id="projectVersion">Version: 3.0</li>
   </ul>
           <div class="pull-right">  <ul class="nav">
@@ -399,9 +399,9 @@
 							memory manager you would like to use. You
 							can create your own memory manager by
 							implementing the
-							org.apache.commons.jcs.engine.memory.MemoryCache
+							org.apache.commons.jcs3.engine.memory.MemoryCache
 							interface. Alternatively, you can extend the
-							org.apache.commons.jcs.engine.memory.AbstractMemoryCache
+							org.apache.commons.jcs3.engine.memory.AbstractMemoryCache
 							class. Several different memory caches are
 							available: two LRU implementations, an LFU,
 							and an adaptive replacement algorithm.
@@ -410,7 +410,7 @@
 <td>N</td>
 						
 <td>
-							org.apache.commons.jcs.engine.memory.lru.LRUMemoryCache
+							org.apache.commons.jcs3.engine.memory.lru.LRUMemoryCache
 						</td>
 					</tr>
 					
@@ -601,13 +601,13 @@
 <pre>
 					
 jcs.default=
-jcs.default.cacheattributes=org.apache.commons.jcs.engine.CompositeCacheAttributes
+jcs.default.cacheattributes=org.apache.commons.jcs3.engine.CompositeCacheAttributes
 jcs.default.cacheattributes.MaxObjects=200001
-jcs.default.cacheattributes.MemoryCacheName=org.apache.commons.jcs.engine.memory.lru.LRUMemoryCache
+jcs.default.cacheattributes.MemoryCacheName=org.apache.commons.jcs3.engine.memory.lru.LRUMemoryCache
 jcs.default.cacheattributes.UseMemoryShrinker=true
 jcs.default.cacheattributes.MaxMemoryIdleTimeSeconds=3600
 jcs.default.cacheattributes.ShrinkerIntervalSeconds=60
-jcs.default.elementattributes=org.apache.commons.jcs.engine.ElementAttributes
+jcs.default.elementattributes=org.apache.commons.jcs3.engine.ElementAttributes
 jcs.default.elementattributes.IsEternal=false
 jcs.default.elementattributes.MaxLife=700
 jcs.default.elementattributes.IsSpool=true
@@ -616,14 +616,14 @@ jcs.default.elementattributes.IsLateral=
 
 # optional region &quot;testCache1&quot; specific configuration settings
 jcs.region.testCache1=
-jcs.region.testCache1.cacheattributes=org.apache.commons.jcs.engine.CompositeCacheAttributes
+jcs.region.testCache1.cacheattributes=org.apache.commons.jcs3.engine.CompositeCacheAttributes
 jcs.region.testCache1.cacheattributes.MaxObjects=123456
-jcs.region.testCache1.cacheattributes.MemoryCacheName=org.apache.commons.jcs.engine.memory.lru.LRUMemoryCache
+jcs.region.testCache1.cacheattributes.MemoryCacheName=org.apache.commons.jcs3.engine.memory.lru.LRUMemoryCache
 jcs.region.testCache1.cacheattributes.UseMemoryShrinker=true
 jcs.region.testCache1.cacheattributes.ShrinkerIntervalSeconds=30
 jcs.region.testCache1.cacheattributes.MaxMemoryIdleTimeSeconds=300
 jcs.region.testCache1.cacheattributes.MaxSpoolPerRun=100
-jcs.region.testCache1.elementattributes=org.apache.commons.jcs.engine.ElementAttributes
+jcs.region.testCache1.elementattributes=org.apache.commons.jcs3.engine.ElementAttributes
 jcs.region.testCache1.elementattributes.IsEternal=false
 jcs.region.testCache1.elementattributes.MaxLife=60000
 jcs.region.testCache1.elementattributes.IsSpool=true

Modified: websites/production/commons/content/proper/commons-jcs/RemoteAuxCache.html
==============================================================================
--- websites/production/commons/content/proper/commons-jcs/RemoteAuxCache.html (original)
+++ websites/production/commons/content/proper/commons-jcs/RemoteAuxCache.html Mon Oct  5 15:51:02 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 16 August 2020
+ | Generated by Apache Maven Doxia at 05 October 2020
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
@@ -9,7 +9,7 @@
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
             <meta name="author" content="Pete Kazmier" />
         <meta name="author" content="Aaron Smuts" />
-                <meta name="Date-Revision-yyyymmdd" content="20200816" />
+                <meta name="Date-Revision-yyyymmdd" content="20201005" />
             <meta http-equiv="Content-Language" content="en" />
         <title>JCS &#x2013; Remote Auxiliary Cache Client / Server</title>
 
@@ -41,7 +41,7 @@
           <a class="brand" href="http://commons.apache.org/proper/commons-jcs/">Apache Commons JCS &trade;</a>
           <ul class="nav">      
                     
-          <li id="publishDate">Last Published: 16 August 2020</li>
+          <li id="publishDate">Last Published: 05 October 2020</li>
     <li class="divider">|</li> <li id="projectVersion">Version: 3.0</li>
   </ul>
           <div class="pull-right">  <ul class="nav">
@@ -481,9 +481,9 @@
 					
 # Remote RMI Cache set up to failover
 jcs.auxiliary.RFailover=
-    org.apache.commons.jcs.auxiliary.remote.RemoteCacheFactory
+    org.apache.commons.jcs3.auxiliary.remote.RemoteCacheFactory
 jcs.auxiliary.RFailover.attributes=
-    org.apache.commons.jcs.auxiliary.remote.RemoteCacheAttributes
+    org.apache.commons.jcs3.auxiliary.remote.RemoteCacheAttributes
 jcs.auxiliary.RFailover.attributes.FailoverServers=
     localhost:1102,localhost:1103
 jcs.auxiliary.RFailover.attributes.RemoveUponRemotePut=true
@@ -502,10 +502,10 @@ jcs.auxiliary.RFailover.attributes.GetOn
 #Regions preconfirgured for caching
 jcs.region.testCache1=DC,RFailover
 jcs.region.testCache1.cacheattributes=
-    org.apache.commons.jcs.engine.CompositeCacheAttributes
+    org.apache.commons.jcs3.engine.CompositeCacheAttributes
 jcs.region.testCache1.cacheattributes.MaxObjects=1000
 jcs.region.testCache1.cacheattributes.MemoryCacheName=
-    org.apache.commons.jcs.engine.memory.lru.LRUMemoryCache
+    org.apache.commons.jcs3.engine.memory.lru.LRUMemoryCache
         
 				</pre></div>
 			</section>
@@ -593,13 +593,13 @@ remote.cluster.AllowClusterGet=true
 # sets the default aux value for any non configured caches
 jcs.default=DC,RCluster1
 jcs.default.cacheattributes=
-    org.apache.commons.jcs.engine.CompositeCacheAttributes
+    org.apache.commons.jcs3.engine.CompositeCacheAttributes
 jcs.default.cacheattributes.MaxObjects=1000
 
 jcs.auxiliary.RCluster1=
-    org.apache.commons.jcs.auxiliary.remote.RemoteCacheFactory
+    org.apache.commons.jcs3.auxiliary.remote.RemoteCacheFactory
 jcs.auxiliary.RCluster1.attributes=
-    org.apache.commons.jcs.auxiliary.remote.RemoteCacheAttributes
+    org.apache.commons.jcs3.auxiliary.remote.RemoteCacheAttributes
 jcs.auxiliary.RCluster1.attributes.RemoteTypeName=CLUSTER
 jcs.auxiliary.RCluster1.attributes.RemoveUponRemotePut=false
 jcs.auxiliary.RCluster1.attributes.ClusterServers=localhost:1103
@@ -654,9 +654,9 @@ jcs.auxiliary.RCluster1.attributes.GetOn
 					
 	# Remote RMI Cache set up to failover
 	jcs.auxiliary.RFailover=
-	    org.apache.commons.jcs.auxiliary.remote.RemoteCacheFactory
+	    org.apache.commons.jcs3.auxiliary.remote.RemoteCacheFactory
 	jcs.auxiliary.RFailover.attributes=
-	    org.apache.commons.jcs.auxiliary.remote.RemoteCacheAttributes
+	    org.apache.commons.jcs3.auxiliary.remote.RemoteCacheAttributes
 	jcs.auxiliary.RFailover.attributes.FailoverServers=
 	    localhost:1102,localhost:1103
 	jcs.auxiliary.RC.attributes.RemoveUponRemotePut=true
@@ -691,7 +691,7 @@ jcs.auxiliary.RCluster1.attributes.GetOn
     &lt;servlet&gt;
         &lt;servlet-name&gt;JCSRemoteCacheStartupServlet&lt;/servlet-name&gt;
         &lt;servlet-class&gt;
-             org.apache.commons.jcs.auxiliary.remote.server.RemoteCacheStartupServlet
+             org.apache.commons.jcs3.auxiliary.remote.server.RemoteCacheStartupServlet
         &lt;/servlet-class&gt;
         &lt;load-on-startup&gt;1&lt;/load-on-startup&gt;
     &lt;/servlet&gt;

Modified: websites/production/commons/content/proper/commons-jcs/RemoteCacheProperties.html
==============================================================================
--- websites/production/commons/content/proper/commons-jcs/RemoteCacheProperties.html (original)
+++ websites/production/commons/content/proper/commons-jcs/RemoteCacheProperties.html Mon Oct  5 15:51:02 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 16 August 2020
+ | Generated by Apache Maven Doxia at 05 October 2020
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
@@ -8,7 +8,7 @@
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
             <meta name="author" content="Aaron Smuts" />
-                <meta name="Date-Revision-yyyymmdd" content="20200816" />
+                <meta name="Date-Revision-yyyymmdd" content="20201005" />
             <meta http-equiv="Content-Language" content="en" />
         <title>JCS &#x2013; Remote Cache Configuration</title>
 
@@ -40,7 +40,7 @@
           <a class="brand" href="http://commons.apache.org/proper/commons-jcs/">Apache Commons JCS &trade;</a>
           <ul class="nav">      
                     
-          <li id="publishDate">Last Published: 16 August 2020</li>
+          <li id="publishDate">Last Published: 05 October 2020</li>
     <li class="divider">|</li> <li id="projectVersion">Version: 3.0</li>
   </ul>
           <div class="pull-right">  <ul class="nav">
@@ -513,8 +513,8 @@
 <pre>
 					
 # This remote client does not receive
-jcs.auxiliary.RC=org.apache.commons.jcs.auxiliary.remote.RemoteCacheFactory
-jcs.auxiliary.RC.attributes=org.apache.commons.jcs.auxiliary.remote.RemoteCacheAttributes
+jcs.auxiliary.RC=org.apache.commons.jcs3.auxiliary.remote.RemoteCacheFactory
+jcs.auxiliary.RC.attributes=org.apache.commons.jcs3.auxiliary.remote.RemoteCacheAttributes
 jcs.auxiliary.RC.attributes.FailoverServers=localhost:1101,localhost:1102
 jcs.auxiliary.RC.attributes.LocalPort=1201
 jcs.auxiliary.RC.attributes.RemoveUponRemotePut=false

Modified: websites/production/commons/content/proper/commons-jcs/RemoteHttpCacheProperties.html
==============================================================================
--- websites/production/commons/content/proper/commons-jcs/RemoteHttpCacheProperties.html (original)
+++ websites/production/commons/content/proper/commons-jcs/RemoteHttpCacheProperties.html Mon Oct  5 15:51:02 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 16 August 2020
+ | Generated by Apache Maven Doxia at 05 October 2020
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
@@ -8,7 +8,7 @@
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
             <meta name="author" content="Aaron Smuts" />
-                <meta name="Date-Revision-yyyymmdd" content="20200816" />
+                <meta name="Date-Revision-yyyymmdd" content="20201005" />
             <meta http-equiv="Content-Language" content="en" />
         <title>JCS &#x2013; Remote Http Cache Configuration</title>
 
@@ -40,7 +40,7 @@
           <a class="brand" href="http://commons.apache.org/proper/commons-jcs/">Apache Commons JCS &trade;</a>
           <ul class="nav">      
                     
-          <li id="publishDate">Last Published: 16 August 2020</li>
+          <li id="publishDate">Last Published: 05 October 2020</li>
     <li class="divider">|</li> <li id="projectVersion">Version: 3.0</li>
   </ul>
           <div class="pull-right">  <ul class="nav">
@@ -484,8 +484,8 @@
 <pre>
 					
 # This remote client does not receive
-jcs.auxiliary.RC=org.apache.commons.jcs.auxiliary.remote.http.client.RemoteCacheFactory
-jcs.auxiliary.RC.attributes=org.apache.commons.jcs.auxiliary.remote.RemoteCacheAttributes
+jcs.auxiliary.RC=org.apache.commons.jcs3.auxiliary.remote.http.client.RemoteCacheFactory
+jcs.auxiliary.RC.attributes=org.apache.commons.jcs3.auxiliary.remote.RemoteCacheAttributes
 jcs.auxiliary.RC.attributes.FailoverServers=localhost:1101,localhost:1102
 jcs.auxiliary.RC.attributes.LocalPort=1201
 jcs.auxiliary.RC.attributes.RemoveUponRemotePut=false

Modified: websites/production/commons/content/proper/commons-jcs/UsingJCSBasicWeb.html
==============================================================================
--- websites/production/commons/content/proper/commons-jcs/UsingJCSBasicWeb.html (original)
+++ websites/production/commons/content/proper/commons-jcs/UsingJCSBasicWeb.html Mon Oct  5 15:51:02 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 16 August 2020
+ | Generated by Apache Maven Doxia at 05 October 2020
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
@@ -8,7 +8,7 @@
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
             <meta name="author" content="Aaron Smuts" />
-                <meta name="Date-Revision-yyyymmdd" content="20200816" />
+                <meta name="Date-Revision-yyyymmdd" content="20201005" />
             <meta http-equiv="Content-Language" content="en" />
         <title>JCS &#x2013; Using JCS: Some basics for the web</title>
 
@@ -40,7 +40,7 @@
           <a class="brand" href="http://commons.apache.org/proper/commons-jcs/">Apache Commons JCS &trade;</a>
           <ul class="nav">      
                     
-          <li id="publishDate">Last Published: 16 August 2020</li>
+          <li id="publishDate">Last Published: 05 October 2020</li>
     <li class="divider">|</li> <li id="projectVersion">Version: 3.0</li>
   </ul>
           <div class="pull-right">  <ul class="nav">
@@ -410,7 +410,6 @@
 <pre>
 package com.genericbookstore.data;
 
-import java.io.Serializable;
 import java.util.Date;
 
 public class BookVObj implements Serializable
@@ -443,9 +442,10 @@ public class BookVObj implements Seriali
 <pre>
 package com.genericbookstore.data;
 
-import org.apache.commons.jcs.JCS;
+import org.apache.commons.jcs3.JCS;
+import org.apache.commons.jcs3.access.CacheAccess;
 // in case we want to set some special behavior
-import org.apache.commons.jcs.engine.behavior.IElementAttributes;
+import org.apache.commons.jcs3.engine.behavior.IElementAttributes;
 
 public class BookVObjManager
 {
@@ -680,10 +680,10 @@ public class BookVObjManager
 # sets the default aux value for any non configured caches
 jcs.default=DC,RFailover
 jcs.default.cacheattributes=
-    org.apache.commons.jcs.engine.CompositeCacheAttributes
+    org.apache.commons.jcs3.engine.CompositeCacheAttributes
 jcs.default.cacheattributes.MaxObjects=1000
 jcs.default.cacheattributes.MemoryCacheName=
-    org.apache.commons.jcs.engine.memory.lru.LRUMemoryCache
+    org.apache.commons.jcs3.engine.memory.lru.LRUMemoryCache
 jcs.default.elementattributes.IsEternal=false
 jcs.default.elementattributes.MaxLife=3600
 jcs.default.elementattributes.IdleTime=1800
@@ -697,10 +697,10 @@ jcs.default.elementattributes.IsLateral=
 # Regions preconfigured for caching
 jcs.region.bookCache=DC,RFailover
 jcs.region.bookCache.cacheattributes=
-    org.apache.commons.jcs.engine.CompositeCacheAttributes
+    org.apache.commons.jcs3.engine.CompositeCacheAttributes
 jcs.region.bookCache.cacheattributes.MaxObjects=1200
 jcs.region.bookCache.cacheattributes.MemoryCacheName=
-    org.apache.commons.jcs.engine.memory.lru.LRUMemoryCache
+    org.apache.commons.jcs3.engine.memory.lru.LRUMemoryCache
 jcs.region.bookCache.elementattributes.IsEternal=false
 jcs.region.bookCache.elementattributes.MaxLife=7200
 jcs.region.bookCache.elementattributes.IdleTime=1800
@@ -712,9 +712,9 @@ jcs.region.bookCache.elementattributes.I
 
 # Primary Disk Cache -- faster than the rest because of memory key storage
 jcs.auxiliary.DC=
-    org.apache.commons.jcs.auxiliary.disk.indexed.IndexedDiskCacheFactory
+    org.apache.commons.jcs3.auxiliary.disk.indexed.IndexedDiskCacheFactory
 jcs.auxiliary.DC.attributes=
-    org.apache.commons.jcs.auxiliary.disk.indexed.IndexedDiskCacheAttributes
+    org.apache.commons.jcs3.auxiliary.disk.indexed.IndexedDiskCacheAttributes
 jcs.auxiliary.DC.attributes.DiskPath=/usr/opt/bookstore/raf
 jcs.auxiliary.DC.attributes.MaxPurgatorySize=10000
 jcs.auxiliary.DC.attributes.MaxKeySize=10000
@@ -722,9 +722,9 @@ jcs.auxiliary.DC.attributes.OptimizeAtRe
 
 # Remote RMI Cache set up to failover
 jcs.auxiliary.RFailover=
-    org.apache.commons.jcs.auxiliary.remote.RemoteCacheFactory
+    org.apache.commons.jcs3.auxiliary.remote.RemoteCacheFactory
 jcs.auxiliary.RFailover.attributes=
-    org.apache.commons.jcs.auxiliary.remote.RemoteCacheAttributes
+    org.apache.commons.jcs3.auxiliary.remote.RemoteCacheAttributes
 jcs.auxiliary.RFailover.attributes.RemoteTypeName=LOCAL
 jcs.auxiliary.RFailover.attributes.FailoverServers=scriptserver:1102
 jcs.auxiliary.RFailover.attributes.GetOnly=false

Modified: websites/production/commons/content/proper/commons-jcs/getting_started/intro.html
==============================================================================
--- websites/production/commons/content/proper/commons-jcs/getting_started/intro.html (original)
+++ websites/production/commons/content/proper/commons-jcs/getting_started/intro.html Mon Oct  5 15:51:02 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 16 August 2020
+ | Generated by Apache Maven Doxia at 05 October 2020
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
@@ -8,7 +8,7 @@
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
             <meta name="author" content="Aaron Smuts" />
-                <meta name="Date-Revision-yyyymmdd" content="20200816" />
+                <meta name="Date-Revision-yyyymmdd" content="20201005" />
             <meta http-equiv="Content-Language" content="en" />
         <title>JCS &#x2013; Getting Started -- Introduction</title>
 
@@ -40,7 +40,7 @@
           <a class="brand" href="http://commons.apache.org/proper/commons-jcs/">Apache Commons JCS &trade;</a>
           <ul class="nav">      
                     
-          <li id="publishDate">Last Published: 16 August 2020</li>
+          <li id="publishDate">Last Published: 05 October 2020</li>
     <li class="divider">|</li> <li id="projectVersion">Version: 3.0</li>
   </ul>
           <div class="pull-right">  <ul class="nav">
@@ -433,13 +433,13 @@
                 
 # DEFAULT CACHE REGION
 jcs.default=DC
-jcs.default.cacheattributes=org.apache.commons.jcs.engine.CompositeCacheAttributes
+jcs.default.cacheattributes=org.apache.commons.jcs3.engine.CompositeCacheAttributes
 jcs.default.cacheattributes.MaxObjects=1000
-jcs.default.cacheattributes.MemoryCacheName=org.apache.commons.jcs.engine.memory.lru.LRUMemoryCache
+jcs.default.cacheattributes.MemoryCacheName=org.apache.commons.jcs3.engine.memory.lru.LRUMemoryCache
 jcs.default.cacheattributes.UseMemoryShrinker=false
 jcs.default.cacheattributes.MaxMemoryIdleTimeSeconds=3600
 jcs.default.cacheattributes.ShrinkerIntervalSeconds=60
-jcs.default.elementattributes=org.apache.commons.jcs.engine.ElementAttributes
+jcs.default.elementattributes=org.apache.commons.jcs3.engine.ElementAttributes
 jcs.default.elementattributes.IsEternal=false
 jcs.default.elementattributes.MaxLife=21600
 jcs.default.elementattributes.IdleTime=1800
@@ -449,19 +449,19 @@ jcs.default.elementattributes.IsLateral=
 
 # PRE-DEFINED CACHE REGIONS
 jcs.region.testCache1=DC
-jcs.region.testCache1.cacheattributes=org.apache.commons.jcs.engine.CompositeCacheAttributes
+jcs.region.testCache1.cacheattributes=org.apache.commons.jcs3.engine.CompositeCacheAttributes
 jcs.region.testCache1.cacheattributes.MaxObjects=1000
-jcs.region.testCache1.cacheattributes.MemoryCacheName=org.apache.commons.jcs.engine.memory.lru.LRUMemoryCache
+jcs.region.testCache1.cacheattributes.MemoryCacheName=org.apache.commons.jcs3.engine.memory.lru.LRUMemoryCache
 jcs.region.testCache1.cacheattributes.UseMemoryShrinker=false
 jcs.region.testCache1.cacheattributes.MaxMemoryIdleTimeSeconds=3600
 jcs.region.testCache1.cacheattributes.ShrinkerIntervalSeconds=60
 jcs.region.testCache1.cacheattributes.MaxSpoolPerRun=500
-jcs.region.testCache1.elementattributes=org.apache.commons.jcs.engine.ElementAttributes
+jcs.region.testCache1.elementattributes=org.apache.commons.jcs3.engine.ElementAttributes
 jcs.region.testCache1.elementattributes.IsEternal=false
 
 # AVAILABLE AUXILIARY CACHES
-jcs.auxiliary.DC=org.apache.commons.jcs.auxiliary.disk.indexed.IndexedDiskCacheFactory
-jcs.auxiliary.DC.attributes=org.apache.commons.jcs.auxiliary.disk.indexed.IndexedDiskCacheAttributes
+jcs.auxiliary.DC=org.apache.commons.jcs3.auxiliary.disk.indexed.IndexedDiskCacheFactory
+jcs.auxiliary.DC.attributes=org.apache.commons.jcs3.auxiliary.disk.indexed.IndexedDiskCacheAttributes
 jcs.auxiliary.DC.attributes.DiskPath=${user.dir}/jcs_swap
 jcs.auxiliary.DC.attributes.MaxPurgatorySize=10000000
 jcs.auxiliary.DC.attributes.MaxKeySize=1000000
@@ -504,9 +504,9 @@ jcs.auxiliary.DC.attributes.ShutdownSpoo
 <pre>
                 
 import java.io.Serializable;
-import org.apache.commons.jcs.JCS;
-import org.apache.commons.jcs.access.CacheAccess;
-import org.apache.commons.jcs.access.exception.CacheException;
+import org.apache.commons.jcs3.JCS;
+import org.apache.commons.jcs3.access.CacheAccess;
+import org.apache.commons.jcs3.access.exception.CacheException;
 
 public class JcsExample 
 {