mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-06-30 18:15:39 +00:00
37410: ALF-14386 HttpClient returns a null byte array if there is no response body (eg 204), swap that for an empty array to avoid NPEs and better fit the interface contract 37439: ALF-13979: Schema comparison NPE when encountering a keyless table 37443: Hand merge of second round of PATH query improvements for ALF-13404 to doclib2 API scripts 37480: Merged V4.0 to V4.0-BUG-FIX 37470: ALF-14434: Specify a START WITH value for the rebuilt alf_acl_change_set primary key on DB2 37475: ALF-13839: Transaction purging didn't work on SQL Server! 37484: Merged PATCHES/V3.4.6 to V4.0-BUG-FIX (RECORD ONLY) 36821: ALF-13827: Make replicated caches recover from temporary comms failures by flushing when a change in peers is detected - We do not flush caches who replicate via copy (e.g. tickets cache) as these may not be recoverable 37487: Merged V3.4-BUG-FIX to V4.0-BUG-FIX 37225: ALF-13617 Revert To Version functionality incorrectly reverts to the wrong version/file 37280: Merged DEV to V3.4-BUG-FIX 37279: ALF-14360 : Missing caches from ehcache-custom.xml.sample.cluster org.alfresco.cache.avm.avmVersionRootEntityCache and org.alfresco.cache.tagscopeSummaryCache were added to the ehcache configuration. 37473: ALF-12081: Ensure that cancel checkout can both unlock and cancel offline edit 37478: Merged BRANCHES/DEV/BELARUS/V3.4-BUG-FIX-2012_05_22 to BRANCHES/DEV/V3.4-BUG-FIX: 37471: ALF-9475 : Remove JBPM indexes present from upgrades 37485: ALF-9475: Fix up schema versions 37488: Merged V3.4-BUG-FIX to V4.0-BUG-FIX (RECORD ONLY) 37330: Merged V4.0-BUG-FIX to V3.4-BUG-FIX 37323: ALF-13247: Two nodes with the same primary path. -Fixed by initializing zone before parallel batch processing begins. 37356: ALF-14392: Merged V4.0-BUG-FIX to V3.4-BUG-FIX 36346: Fix for ALF-9466 - We can search contents sorted by categories in Advanced search in Share, but saved search will not be shown in UI. 37373: Merged PATCHES/V3.4.6 to V3.4-BUG-FIX 36821: ALF-13827 / ALF-14402: Make replicated caches recover from temporary comms failures by flushing when a change in peers is detected - We do not flush caches who replicate via copy (e.g. tickets cache) as these may not be recoverable 37122: ALF-13919 / ALF-14403: Merged DEV to PATCHES/V3.4.6 - Rework of Dmitry's implementation - Uses dynamic HQL query to retrieve JBPM workflow instances by specified query criteria - WorkflowInstancesGet web script no longer has to iterate over every workflow instance in the database! - DB index added to enable efficient querying by string variable - Hibernate tastic! 37188: ALF-13919 / ALF-14403: Worked around HQL polymorphism issues by using explicit variable subclass names in from clause 37204: ALF-13919 / ALF-14403: Fix to date range handling by Dmitry 37481: Merged HEAD to V3.4-BUG-FIX 37388: ALF-13545: First attempt at digitally signing the Windows installers 37391: ALF-13545: Fix quoting and output directory specification 37393: ALF-13545: Correct deployment installer signcode command git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@37491 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
801 lines
29 KiB
Plaintext
801 lines
29 KiB
Plaintext
<ehcache>
|
|
<diskStore
|
|
path="java.io.tmpdir"/>
|
|
|
|
<!--
|
|
The 'heartbeatInterval' property is the only one used for the Hazelcast-enabled implementation
|
|
-->
|
|
<cacheManagerPeerProviderFactory
|
|
class="org.alfresco.repo.cache.AlfrescoCacheManagerPeerProviderFactory"
|
|
properties="heartbeatInterval=5000,
|
|
peerDiscovery=automatic,
|
|
multicastGroupAddress=230.0.0.1,
|
|
multicastGroupPort=4446"
|
|
/>
|
|
|
|
<cacheManagerPeerListenerFactory
|
|
class="net.sf.ehcache.distribution.RMICacheManagerPeerListenerFactory"
|
|
properties="socketTimeoutMillis=10000"
|
|
/>
|
|
<!--
|
|
To control the cache peer URLs, replace the 'cacheManagerPeerListenerFactory' with the following
|
|
and set the properties statically, in alfresco-global.properties or via java -D options.
|
|
Only the hostName needs to be set as the others have sensible defaults.
|
|
-->
|
|
<!--
|
|
<cacheManagerPeerListenerFactory
|
|
class="net.sf.ehcache.distribution.RMICacheManagerPeerListenerFactory"
|
|
properties="hostName=${alfresco.ehcache.rmi.hostname},
|
|
port=${alfresco.ehcache.rmi.port},
|
|
remoteObjectPort=${alfresco.ehcache.rmi.remoteObjectPort},
|
|
socketTimeoutMillis=${alfresco.ehcache.rmi.socketTimeoutMillis}"
|
|
/>
|
|
-->
|
|
|
|
<defaultCache
|
|
maxElementsInMemory="5000"
|
|
eternal="true"
|
|
timeToIdleSeconds="0"
|
|
timeToLiveSeconds="0"
|
|
overflowToDisk="false"
|
|
statistics="false"
|
|
>
|
|
|
|
<cacheEventListenerFactory
|
|
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
|
|
properties="replicatePuts = false,
|
|
replicateUpdates = true,
|
|
replicateRemovals = true,
|
|
replicateUpdatesViaCopy = false,
|
|
replicateAsynchronously = false"/>
|
|
</defaultCache>
|
|
|
|
<cache
|
|
name="org.hibernate.cache.StandardQueryCache"
|
|
maxElementsInMemory="50"
|
|
eternal="true"
|
|
timeToLiveSeconds="0"
|
|
overflowToDisk="false"
|
|
statistics="false"
|
|
>
|
|
|
|
<cacheEventListenerFactory
|
|
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
|
|
properties="replicatePuts = false,
|
|
replicateUpdates = true,
|
|
replicateRemovals = true,
|
|
replicateUpdatesViaCopy = false,
|
|
replicateAsynchronously = false"/>
|
|
</cache>
|
|
|
|
<cache
|
|
name="org.hibernate.cache.UpdateTimestampsCache"
|
|
maxElementsInMemory="2000"
|
|
eternal="true"
|
|
overflowToDisk="false"
|
|
statistics="false"
|
|
>
|
|
|
|
<cacheEventListenerFactory
|
|
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
|
|
properties="replicatePuts = false,
|
|
replicateUpdates = true,
|
|
replicateRemovals = true,
|
|
replicateUpdatesViaCopy = false,
|
|
replicateAsynchronously = false"/>
|
|
</cache>
|
|
|
|
<cache
|
|
name="org.alfresco.cache.node.rootNodesCache"
|
|
maxElementsInMemory="1000"
|
|
eternal="true"
|
|
timeToIdleSeconds="0"
|
|
timeToLiveSeconds="0"
|
|
overflowToDisk="false"
|
|
statistics="false"
|
|
>
|
|
|
|
<cacheEventListenerFactory
|
|
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
|
|
properties="replicatePuts = false,
|
|
replicateUpdates = true,
|
|
replicateRemovals = true,
|
|
replicateUpdatesViaCopy = false,
|
|
replicateAsynchronously = false"/>
|
|
</cache>
|
|
|
|
<cache
|
|
name="org.alfresco.cache.node.allRootNodesCache"
|
|
maxElementsInMemory="1000"
|
|
eternal="true"
|
|
timeToIdleSeconds="0"
|
|
timeToLiveSeconds="0"
|
|
overflowToDisk="false"
|
|
statistics="false"
|
|
>
|
|
|
|
<cacheEventListenerFactory
|
|
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
|
|
properties="replicatePuts = false,
|
|
replicateUpdates = true,
|
|
replicateRemovals = true,
|
|
replicateUpdatesViaCopy = false,
|
|
replicateAsynchronously = false"/>
|
|
</cache>
|
|
|
|
<cache
|
|
name="org.alfresco.cache.node.nodesCache"
|
|
maxElementsInMemory="250000"
|
|
eternal="true"
|
|
timeToIdleSeconds="0"
|
|
timeToLiveSeconds="0"
|
|
overflowToDisk="false"
|
|
statistics="false"
|
|
>
|
|
|
|
<cacheEventListenerFactory
|
|
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
|
|
properties="replicatePuts = false,
|
|
replicateUpdates = true,
|
|
replicateRemovals = true,
|
|
replicateUpdatesViaCopy = false,
|
|
replicateAsynchronously = false"/>
|
|
</cache>
|
|
|
|
<cache
|
|
name="org.alfresco.cache.node.aspectsCache"
|
|
maxElementsInMemory="130000"
|
|
eternal="true"
|
|
timeToIdleSeconds="0"
|
|
timeToLiveSeconds="0"
|
|
overflowToDisk="false"
|
|
statistics="false"
|
|
>
|
|
|
|
<cacheEventListenerFactory
|
|
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
|
|
properties="replicatePuts = false,
|
|
replicateUpdates = true,
|
|
replicateRemovals = true,
|
|
replicateUpdatesViaCopy = false,
|
|
replicateAsynchronously = false"/>
|
|
</cache>
|
|
|
|
<cache
|
|
name="org.alfresco.cache.node.propertiesCache"
|
|
maxElementsInMemory="130000"
|
|
eternal="true"
|
|
timeToIdleSeconds="0"
|
|
timeToLiveSeconds="0"
|
|
overflowToDisk="false"
|
|
statistics="false"
|
|
>
|
|
|
|
<cacheEventListenerFactory
|
|
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
|
|
properties="replicatePuts = false,
|
|
replicateUpdates = true,
|
|
replicateRemovals = true,
|
|
replicateUpdatesViaCopy = false,
|
|
replicateAsynchronously = false"/>
|
|
</cache>
|
|
|
|
<cache
|
|
name="org.alfresco.cache.node.parentAssocsCache"
|
|
maxElementsInMemory="130000"
|
|
eternal="true"
|
|
overflowToDisk="false"
|
|
statistics="false"
|
|
>
|
|
|
|
<cacheEventListenerFactory
|
|
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
|
|
properties="replicatePuts = false,
|
|
replicateUpdates = true,
|
|
replicateRemovals = true,
|
|
replicateUpdatesViaCopy = false,
|
|
replicateAsynchronously = false"/>
|
|
</cache>
|
|
|
|
<cache
|
|
name="org.alfresco.cache.node.childByNameCache"
|
|
maxElementsInMemory="130000"
|
|
eternal="true"
|
|
overflowToDisk="false"
|
|
statistics="false"
|
|
>
|
|
<!-- Not clustered -->
|
|
</cache>
|
|
|
|
<cache
|
|
name="org.alfresco.cache.avm.avmEntityCache"
|
|
maxElementsInMemory="10000"
|
|
eternal="true"
|
|
overflowToDisk="false"
|
|
statistics="false"
|
|
>
|
|
|
|
<cacheEventListenerFactory
|
|
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
|
|
properties="replicatePuts = false,
|
|
replicateUpdates = true,
|
|
replicateRemovals = true,
|
|
replicateUpdatesViaCopy = false,
|
|
replicateAsynchronously = false"/>
|
|
</cache>
|
|
|
|
<cache
|
|
name="org.alfresco.cache.avm.avmVersionRootEntityCache"
|
|
maxElementsInMemory="1000"
|
|
eternal="true"
|
|
overflowToDisk="false"
|
|
statistics="false"
|
|
>
|
|
|
|
<cacheEventListenerFactory
|
|
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
|
|
properties="replicatePuts = false,
|
|
replicateUpdates = true,
|
|
replicateRemovals = true,
|
|
replicateUpdatesViaCopy = false,
|
|
replicateAsynchronously = false"/>
|
|
</cache>
|
|
|
|
<cache
|
|
name="org.alfresco.cache.avm.avmNodeCache"
|
|
maxElementsInMemory="1000"
|
|
eternal="true"
|
|
overflowToDisk="false"
|
|
statistics="false"
|
|
>
|
|
|
|
<cacheEventListenerFactory
|
|
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
|
|
properties="replicatePuts = false,
|
|
replicateUpdates = true,
|
|
replicateRemovals = true,
|
|
replicateUpdatesViaCopy = false,
|
|
replicateAsynchronously = false"/>
|
|
</cache>
|
|
|
|
<cache
|
|
name="org.alfresco.cache.avm.avmStoreCache"
|
|
maxElementsInMemory="1000"
|
|
eternal="true"
|
|
overflowToDisk="false"
|
|
statistics="false"
|
|
>
|
|
|
|
<cacheEventListenerFactory
|
|
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
|
|
properties="replicatePuts = false,
|
|
replicateUpdates = true,
|
|
replicateRemovals = true,
|
|
replicateUpdatesViaCopy = false,
|
|
replicateAsynchronously = false"/>
|
|
</cache>
|
|
|
|
<cache
|
|
name="org.alfresco.cache.avm.avmNodeAspectsCache"
|
|
maxElementsInMemory="1000"
|
|
eternal="true"
|
|
overflowToDisk="false"
|
|
statistics="false"
|
|
>
|
|
|
|
<cacheEventListenerFactory
|
|
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
|
|
properties="replicatePuts = false,
|
|
replicateUpdates = true,
|
|
replicateRemovals = true,
|
|
replicateUpdatesViaCopy = false,
|
|
replicateAsynchronously = false"/>
|
|
</cache>
|
|
|
|
<cache
|
|
name="org.alfresco.repo.webservices.querySessionSharedCache"
|
|
maxElementsInMemory="1000"
|
|
eternal="false"
|
|
timeToLiveSeconds="300"
|
|
overflowToDisk="false"
|
|
statistics="false"
|
|
>
|
|
|
|
<cacheEventListenerFactory
|
|
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
|
|
properties="replicatePuts = true,
|
|
replicateUpdates = true,
|
|
replicateRemovals = true,
|
|
replicateUpdatesViaCopy = true,
|
|
replicateAsynchronously = false"/>
|
|
</cache>
|
|
|
|
<cache
|
|
name="org.alfresco.cache.propertyValueCache"
|
|
maxElementsInMemory="10000"
|
|
eternal="true"
|
|
overflowToDisk="false"
|
|
statistics="false"
|
|
>
|
|
|
|
<cacheEventListenerFactory
|
|
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
|
|
properties="replicatePuts = false,
|
|
replicateUpdates = true,
|
|
replicateRemovals = true,
|
|
replicateUpdatesViaCopy = false,
|
|
replicateAsynchronously = false"/>
|
|
</cache>
|
|
|
|
<cache
|
|
name="org.alfresco.cache.contentDataCache"
|
|
maxElementsInMemory="130000"
|
|
eternal="true"
|
|
overflowToDisk="false"
|
|
statistics="false"
|
|
>
|
|
|
|
<cacheEventListenerFactory
|
|
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
|
|
properties="replicatePuts = false,
|
|
replicateUpdates = true,
|
|
replicateRemovals = true,
|
|
replicateUpdatesViaCopy = false,
|
|
replicateAsynchronously = false"/>
|
|
</cache>
|
|
|
|
<cache
|
|
name="org.alfresco.cache.immutableEntityCache"
|
|
maxElementsInMemory="50000"
|
|
eternal="true"
|
|
overflowToDisk="false"
|
|
statistics="false"
|
|
>
|
|
|
|
<cacheEventListenerFactory
|
|
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
|
|
properties="replicatePuts = false,
|
|
replicateUpdates = true,
|
|
replicateRemovals = true,
|
|
replicateUpdatesViaCopy = false,
|
|
replicateAsynchronously = false"/>
|
|
</cache>
|
|
|
|
<cache
|
|
name="org.alfresco.cache.userToAuthorityCache"
|
|
maxElementsInMemory="5000"
|
|
eternal="true"
|
|
overflowToDisk="false"
|
|
statistics="false"
|
|
>
|
|
|
|
<cacheEventListenerFactory
|
|
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
|
|
properties="replicatePuts = false,
|
|
replicateUpdates = true,
|
|
replicateRemovals = true,
|
|
replicateUpdatesViaCopy = false,
|
|
replicateAsynchronously = false"/>
|
|
</cache>
|
|
|
|
<cache
|
|
name="org.alfresco.cache.authorityToChildAuthorityCache"
|
|
maxElementsInMemory="40000"
|
|
eternal="true"
|
|
overflowToDisk="false"
|
|
statistics="false"
|
|
>
|
|
|
|
<cacheEventListenerFactory
|
|
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
|
|
properties="replicatePuts = false,
|
|
replicateUpdates = true,
|
|
replicateRemovals = true,
|
|
replicateUpdatesViaCopy = false,
|
|
replicateAsynchronously = false"/>
|
|
</cache>
|
|
|
|
<cache
|
|
name="org.alfresco.cache.zoneToAuthorityCache"
|
|
maxElementsInMemory="500"
|
|
eternal="true"
|
|
overflowToDisk="false"
|
|
statistics="false"
|
|
>
|
|
|
|
<cacheEventListenerFactory
|
|
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
|
|
properties="replicatePuts = false,
|
|
replicateUpdates = true,
|
|
replicateRemovals = true,
|
|
replicateUpdatesViaCopy = false,
|
|
replicateAsynchronously = false"/>
|
|
</cache>
|
|
|
|
<cache
|
|
name="org.alfresco.cache.authenticationCache"
|
|
maxElementsInMemory="5000"
|
|
eternal="true"
|
|
overflowToDisk="false"
|
|
statistics="false"
|
|
>
|
|
|
|
<cacheEventListenerFactory
|
|
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
|
|
properties="replicatePuts = false,
|
|
replicateUpdates = true,
|
|
replicateRemovals = true,
|
|
replicateUpdatesViaCopy = false,
|
|
replicateAsynchronously = false"/>
|
|
</cache>
|
|
|
|
<cache
|
|
name="org.alfresco.cache.authorityCache"
|
|
maxElementsInMemory="10000"
|
|
eternal="true"
|
|
overflowToDisk="false"
|
|
statistics="false"
|
|
>
|
|
|
|
<cacheEventListenerFactory
|
|
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
|
|
properties="replicatePuts = false,
|
|
replicateUpdates = true,
|
|
replicateRemovals = true,
|
|
replicateUpdatesViaCopy = false,
|
|
replicateAsynchronously = false"/>
|
|
</cache>
|
|
|
|
<cache
|
|
name="org.alfresco.cache.permissionsAccessCache"
|
|
maxElementsInMemory="50000"
|
|
eternal="true"
|
|
overflowToDisk="false"
|
|
statistics="false"
|
|
>
|
|
|
|
<cacheEventListenerFactory
|
|
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
|
|
properties="replicatePuts = false,
|
|
replicateUpdates = true,
|
|
replicateRemovals = true,
|
|
replicateUpdatesViaCopy = false,
|
|
replicateAsynchronously = false"/>
|
|
</cache>
|
|
|
|
<cache
|
|
name="org.alfresco.cache.readersCache"
|
|
maxElementsInMemory="10000"
|
|
eternal="true"
|
|
overflowToDisk="false"
|
|
statistics="false"
|
|
>
|
|
|
|
<cacheEventListenerFactory
|
|
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
|
|
properties="replicatePuts = false,
|
|
replicateUpdates = true,
|
|
replicateRemovals = true,
|
|
replicateUpdatesViaCopy = false,
|
|
replicateAsynchronously = false"/>
|
|
</cache>
|
|
|
|
<cache
|
|
name="org.alfresco.cache.nodeOwnerCache"
|
|
maxElementsInMemory="40000"
|
|
eternal="true"
|
|
overflowToDisk="false"
|
|
statistics="false"
|
|
>
|
|
|
|
<cacheEventListenerFactory
|
|
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
|
|
properties="replicatePuts = false,
|
|
replicateUpdates = true,
|
|
replicateRemovals = true,
|
|
replicateUpdatesViaCopy = false,
|
|
replicateAsynchronously = false"/>
|
|
</cache>
|
|
|
|
<cache
|
|
name="org.alfresco.cache.personCache"
|
|
maxElementsInMemory="1000"
|
|
eternal="true"
|
|
overflowToDisk="false"
|
|
statistics="false"
|
|
>
|
|
|
|
<cacheEventListenerFactory
|
|
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
|
|
properties="replicatePuts = false,
|
|
replicateUpdates = true,
|
|
replicateRemovals = true,
|
|
replicateUpdatesViaCopy = false,
|
|
replicateAsynchronously = false"/>
|
|
</cache>
|
|
|
|
<cache
|
|
name="org.alfresco.cache.ticketsCache"
|
|
maxElementsInMemory="1000"
|
|
eternal="true"
|
|
overflowToDisk="true"
|
|
statistics="false"
|
|
>
|
|
|
|
<cacheEventListenerFactory
|
|
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
|
|
properties="replicatePuts = true,
|
|
replicateUpdates = true,
|
|
replicateRemovals = true,
|
|
replicateUpdatesViaCopy = true,
|
|
replicateAsynchronously = false"/>
|
|
</cache>
|
|
|
|
<!-- ACL caches -->
|
|
|
|
<cache
|
|
name="org.alfresco.cache.aclCache"
|
|
maxElementsInMemory="50000"
|
|
eternal="true"
|
|
overflowToDisk="false"
|
|
statistics="false"
|
|
>
|
|
|
|
<cacheEventListenerFactory
|
|
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
|
|
properties="replicatePuts = false,
|
|
replicateUpdates = true,
|
|
replicateRemovals = true,
|
|
replicateUpdatesViaCopy = false,
|
|
replicateAsynchronously = false"/>
|
|
</cache>
|
|
|
|
<cache
|
|
name="org.alfresco.cache.permissions.aclEntityCache"
|
|
maxElementsInMemory="50000"
|
|
eternal="true"
|
|
overflowToDisk="false">
|
|
|
|
<cacheEventListenerFactory
|
|
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
|
|
properties="replicatePuts = false,
|
|
replicateUpdates = true,
|
|
replicateRemovals = true,
|
|
replicateUpdatesViaCopy = false,
|
|
replicateAsynchronously = false"/>
|
|
</cache>
|
|
|
|
<!-- Web Client Config (tenant-based) -->
|
|
|
|
<cache
|
|
name="org.alfresco.cache.globalConfigCache"
|
|
maxElementsInMemory="1000"
|
|
eternal="true"
|
|
overflowToDisk="false"
|
|
statistics="false"
|
|
>
|
|
|
|
<cacheEventListenerFactory
|
|
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
|
|
properties="replicatePuts = false,
|
|
replicateUpdates = true,
|
|
replicateRemovals = true,
|
|
replicateUpdatesViaCopy = false,
|
|
replicateAsynchronously = false"/>
|
|
|
|
</cache>
|
|
|
|
<!-- Messages I18N (tenant-based) -->
|
|
|
|
<cache
|
|
name="org.alfresco.cache.resourceBundleBaseNamesCache"
|
|
maxElementsInMemory="1000"
|
|
eternal="true"
|
|
overflowToDisk="false"
|
|
statistics="false"
|
|
>
|
|
|
|
<cacheEventListenerFactory
|
|
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
|
|
properties="replicatePuts = false,
|
|
replicateUpdates = true,
|
|
replicateRemovals = true,
|
|
replicateUpdatesViaCopy = false,
|
|
replicateAsynchronously = false"/>
|
|
|
|
</cache>
|
|
|
|
<cache
|
|
name="org.alfresco.cache.loadedResourceBundlesCache"
|
|
maxElementsInMemory="1000"
|
|
eternal="true"
|
|
overflowToDisk="false"
|
|
statistics="false"
|
|
>
|
|
|
|
<cacheEventListenerFactory
|
|
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
|
|
properties="replicatePuts = false,
|
|
replicateUpdates = true,
|
|
replicateRemovals = true,
|
|
replicateUpdatesViaCopy = false,
|
|
replicateAsynchronously = false"/>
|
|
|
|
</cache>
|
|
|
|
<cache
|
|
name="org.alfresco.cache.messagesCache"
|
|
maxElementsInMemory="1000"
|
|
eternal="true"
|
|
overflowToDisk="false"
|
|
statistics="false"
|
|
>
|
|
|
|
<cacheEventListenerFactory
|
|
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
|
|
properties="replicatePuts = false,
|
|
replicateUpdates = true,
|
|
replicateRemovals = true,
|
|
replicateUpdatesViaCopy = false,
|
|
replicateAsynchronously = false"/>
|
|
|
|
</cache>
|
|
|
|
<!-- Dictionary / Namespace (tenant-based) -->
|
|
|
|
<cache
|
|
name="org.alfresco.cache.compiledModelsCache"
|
|
maxElementsInMemory="1000"
|
|
eternal="true"
|
|
overflowToDisk="false"
|
|
statistics="false"
|
|
>
|
|
|
|
<cacheEventListenerFactory
|
|
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
|
|
properties="replicatePuts = false,
|
|
replicateUpdates = true,
|
|
replicateRemovals = true,
|
|
replicateUpdatesViaCopy = false,
|
|
replicateAsynchronously = false"/>
|
|
|
|
</cache>
|
|
|
|
<cache
|
|
name="org.alfresco.cache.prefixesCache"
|
|
maxElementsInMemory="1000"
|
|
eternal="true"
|
|
overflowToDisk="false"
|
|
statistics="false"
|
|
>
|
|
|
|
<cacheEventListenerFactory
|
|
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
|
|
properties="replicatePuts = false,
|
|
replicateUpdates = true,
|
|
replicateRemovals = true,
|
|
replicateUpdatesViaCopy = false,
|
|
replicateAsynchronously = false"/>
|
|
|
|
</cache>
|
|
|
|
|
|
<!-- Tenants Cache -->
|
|
|
|
<cache
|
|
name="org.alfresco.cache.tenantsCache"
|
|
maxElementsInMemory="1000"
|
|
eternal="true"
|
|
overflowToDisk="false"
|
|
statistics="false"
|
|
>
|
|
|
|
<cacheEventListenerFactory
|
|
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
|
|
properties="replicatePuts = false,
|
|
replicateUpdates = true,
|
|
replicateRemovals = true,
|
|
replicateUpdatesViaCopy = false,
|
|
replicateAsynchronously = false"/>
|
|
|
|
</cache>
|
|
|
|
|
|
<!-- Web Scripts Registry -->
|
|
|
|
<cache
|
|
name="org.alfresco.cache.webScriptsRegistryCache"
|
|
maxElementsInMemory="1000"
|
|
eternal="true"
|
|
overflowToDisk="false"
|
|
statistics="false"
|
|
>
|
|
|
|
<cacheEventListenerFactory
|
|
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
|
|
properties="replicatePuts = false,
|
|
replicateUpdates = false,
|
|
replicateRemovals = true,
|
|
replicateUpdatesViaCopy = false,
|
|
replicateAsynchronously = false"/>
|
|
|
|
</cache>
|
|
|
|
<!-- Routing Content Store -->
|
|
|
|
<cache
|
|
name="org.alfresco.cache.routingContentStoreCache"
|
|
maxElementsInMemory="10000"
|
|
eternal="true"
|
|
overflowToDisk="false"
|
|
statistics="false"
|
|
>
|
|
|
|
<cacheEventListenerFactory
|
|
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
|
|
properties="replicatePuts = false,
|
|
replicateUpdates = true,
|
|
replicateRemovals = true,
|
|
replicateUpdatesViaCopy = false,
|
|
replicateAsynchronously = false"/>
|
|
|
|
</cache>
|
|
|
|
<!-- Executing Actions -->
|
|
|
|
<cache
|
|
name="org.alfresco.cache.executingActionsCache"
|
|
maxElementsInMemory="1000"
|
|
eternal="true"
|
|
overflowToDisk="false"
|
|
statistics="false"
|
|
>
|
|
|
|
<cacheEventListenerFactory
|
|
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
|
|
properties="replicatePuts = true,
|
|
replicateUpdates = true,
|
|
replicateRemovals = true,
|
|
replicateUpdatesViaCopy = true,
|
|
replicateAsynchronously = false"/>
|
|
|
|
</cache>
|
|
|
|
<!-- Tagscope Summary Properties -->
|
|
|
|
<cache
|
|
name="org.alfresco.cache.tagscopeSummaryCache"
|
|
maxElementsInMemory="1000"
|
|
eternal="true"
|
|
overflowToDisk="false"
|
|
statistics="false"
|
|
>
|
|
<cacheEventListenerFactory
|
|
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
|
|
properties="replicatePuts = false,
|
|
replicateUpdates = true,
|
|
replicateRemovals = true,
|
|
replicateUpdatesViaCopy = false,
|
|
replicateAsynchronously = false"/>
|
|
</cache>
|
|
|
|
<!-- Imap Messages -->
|
|
|
|
<cache
|
|
name="org.alfresco.cache.imapMessageCache"
|
|
maxElementsInMemory="2000"
|
|
eternal="true"
|
|
overflowToDisk="false"
|
|
statistics="false"
|
|
>
|
|
<cacheEventListenerFactory
|
|
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
|
|
properties="replicatePuts = true,
|
|
replicateUpdates = true,
|
|
replicateRemovals = true,
|
|
replicateUpdatesViaCopy = true,
|
|
replicateAsynchronously = false"/>
|
|
</cache>
|
|
|
|
</ehcache>
|