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 -->
|
<!-- 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">
|
<bean name="avmStoreSharedCache" class="org.alfresco.repo.cache.EhCacheAdapter">
|
||||||
<property name="cache">
|
<property name="cache">
|
||||||
<bean class="org.springframework.cache.ehcache.EhCacheFactoryBean" >
|
<bean class="org.springframework.cache.ehcache.EhCacheFactoryBean" >
|
||||||
@@ -516,7 +519,7 @@
|
|||||||
</bean>
|
</bean>
|
||||||
</property>
|
</property>
|
||||||
</bean>
|
</bean>
|
||||||
|
-->
|
||||||
|
|
||||||
<!-- The transactional cache for AVM Store entities -->
|
<!-- The transactional cache for AVM Store entities -->
|
||||||
|
|
||||||
@@ -563,7 +566,7 @@
|
|||||||
<value>org.alfresco.cache.avmEntityTransactionalCache</value>
|
<value>org.alfresco.cache.avmEntityTransactionalCache</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="maxCacheSize">
|
<property name="maxCacheSize">
|
||||||
<value>1000</value>
|
<value>5000</value>
|
||||||
</property>
|
</property>
|
||||||
</bean>
|
</bean>
|
||||||
|
|
||||||
@@ -627,7 +630,7 @@
|
|||||||
<value>org.alfresco.cache.avmNodeTransactionalCache</value>
|
<value>org.alfresco.cache.avmNodeTransactionalCache</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="maxCacheSize">
|
<property name="maxCacheSize">
|
||||||
<value>1000</value>
|
<value>5000</value>
|
||||||
</property>
|
</property>
|
||||||
</bean>
|
</bean>
|
||||||
|
|
||||||
@@ -660,7 +663,7 @@
|
|||||||
<value>org.alfresco.cache.avmNodeAspectsTransactionalCache</value>
|
<value>org.alfresco.cache.avmNodeAspectsTransactionalCache</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="maxCacheSize">
|
<property name="maxCacheSize">
|
||||||
<value>100</value>
|
<value>5000</value>
|
||||||
</property>
|
</property>
|
||||||
</bean>
|
</bean>
|
||||||
|
|
||||||
|
@@ -198,7 +198,7 @@
|
|||||||
|
|
||||||
<cache
|
<cache
|
||||||
name="org.alfresco.cache.avm.avmEntityCache"
|
name="org.alfresco.cache.avm.avmEntityCache"
|
||||||
maxElementsInMemory="10000"
|
maxElementsInMemory="5000"
|
||||||
eternal="true"
|
eternal="true"
|
||||||
overflowToDisk="false"
|
overflowToDisk="false"
|
||||||
/>
|
/>
|
||||||
@@ -212,7 +212,7 @@
|
|||||||
|
|
||||||
<cache
|
<cache
|
||||||
name="org.alfresco.cache.avm.avmNodeCache"
|
name="org.alfresco.cache.avm.avmNodeCache"
|
||||||
maxElementsInMemory="1000"
|
maxElementsInMemory="5000"
|
||||||
eternal="true"
|
eternal="true"
|
||||||
overflowToDisk="false"
|
overflowToDisk="false"
|
||||||
/>
|
/>
|
||||||
@@ -226,7 +226,7 @@
|
|||||||
|
|
||||||
<cache
|
<cache
|
||||||
name="org.alfresco.cache.avm.avmNodeAspectsCache"
|
name="org.alfresco.cache.avm.avmNodeAspectsCache"
|
||||||
maxElementsInMemory="1000"
|
maxElementsInMemory="5000"
|
||||||
eternal="true"
|
eternal="true"
|
||||||
overflowToDisk="false"
|
overflowToDisk="false"
|
||||||
/>
|
/>
|
||||||
|
Reference in New Issue
Block a user