mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-14 17:58:59 +00:00
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
19 lines
762 B
XML
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> |