mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
Fix ALFCOM-3457 - WCM: single submit(s) from large modified list
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@17084 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -504,6 +504,9 @@
|
||||
|
||||
<!-- The cross-transaction shared cache for AVM Store entities -->
|
||||
|
||||
<bean name="avmStoreSharedCache" class="org.alfresco.repo.cache.NullCache"/>
|
||||
|
||||
<!--
|
||||
<bean name="avmStoreSharedCache" class="org.alfresco.repo.cache.EhCacheAdapter">
|
||||
<property name="cache">
|
||||
<bean class="org.springframework.cache.ehcache.EhCacheFactoryBean" >
|
||||
@@ -516,7 +519,7 @@
|
||||
</bean>
|
||||
</property>
|
||||
</bean>
|
||||
|
||||
-->
|
||||
|
||||
<!-- The transactional cache for AVM Store entities -->
|
||||
|
||||
@@ -563,7 +566,7 @@
|
||||
<value>org.alfresco.cache.avmEntityTransactionalCache</value>
|
||||
</property>
|
||||
<property name="maxCacheSize">
|
||||
<value>1000</value>
|
||||
<value>5000</value>
|
||||
</property>
|
||||
</bean>
|
||||
|
||||
@@ -627,7 +630,7 @@
|
||||
<value>org.alfresco.cache.avmNodeTransactionalCache</value>
|
||||
</property>
|
||||
<property name="maxCacheSize">
|
||||
<value>1000</value>
|
||||
<value>5000</value>
|
||||
</property>
|
||||
</bean>
|
||||
|
||||
@@ -660,7 +663,7 @@
|
||||
<value>org.alfresco.cache.avmNodeAspectsTransactionalCache</value>
|
||||
</property>
|
||||
<property name="maxCacheSize">
|
||||
<value>100</value>
|
||||
<value>5000</value>
|
||||
</property>
|
||||
</bean>
|
||||
|
||||
|
@@ -198,7 +198,7 @@
|
||||
|
||||
<cache
|
||||
name="org.alfresco.cache.avm.avmEntityCache"
|
||||
maxElementsInMemory="10000"
|
||||
maxElementsInMemory="5000"
|
||||
eternal="true"
|
||||
overflowToDisk="false"
|
||||
/>
|
||||
@@ -212,7 +212,7 @@
|
||||
|
||||
<cache
|
||||
name="org.alfresco.cache.avm.avmNodeCache"
|
||||
maxElementsInMemory="1000"
|
||||
maxElementsInMemory="5000"
|
||||
eternal="true"
|
||||
overflowToDisk="false"
|
||||
/>
|
||||
@@ -226,7 +226,7 @@
|
||||
|
||||
<cache
|
||||
name="org.alfresco.cache.avm.avmNodeAspectsCache"
|
||||
maxElementsInMemory="1000"
|
||||
maxElementsInMemory="5000"
|
||||
eternal="true"
|
||||
overflowToDisk="false"
|
||||
/>
|
||||
|
Reference in New Issue
Block a user