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:
Jan Vonka
2009-10-22 11:52:55 +00:00
parent ca1de03f8b
commit 0d51a96d7c
2 changed files with 986 additions and 983 deletions

View File

@@ -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>

View File

@@ -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"
/>