Files
alfresco-community-repo/source/test-resources/cachingstore/test-cleaner-context.xml
Matt Ward a411eb6fe0 Merged BRANCHES/DEV/THOR1 to HEAD:
32573: THOR-659: Caching Content Store blocked readers


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@32628 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
2011-12-08 09:57:57 +00:00

19 lines
762 B
XML

<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
<beans>
<!-- Override the backing store bean for the cleaner tests -->
<bean id="backingStore" class="org.alfresco.repo.content.caching.test.SlowContentStore">
<!-- set pauseMillis to 0 since we're not really after a SLOW backing store -->
<property name="pauseMillis" value="0"/>
</bean>
<bean id="cachedContentCleaner"
class="org.alfresco.repo.content.caching.cleanup.CachedContentCleaner"
init-method="init">
<property name="maxDeleteWatchCount" value="1"/>
<property name="cache" ref="contentCache"/>
</bean>
</beans>