mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
6580: AVM bulk import performance tweaks. 6582: WCM-767, WCM-768 6583: Fix for AWC-1528 (potential NPE in ErrorsRenderer) 6584: Fix for AWC-1256 (Links produced by inline HTML editor are incorrect) 6585: AR-1635: event listeners added in a beforeCommit event are now executed successfully 6586: AR-1561 Update Web Scripts readme.html to be consistent with "Category Search Sample" (or vice-versa) 6587: Fix for AWC-1390 (Paste all doesn't work for forum items) 6588: AR-1701 Script getDocument call doesn't check for non-existent content 6589: Fix for AWC-1530 - Saved search does not work for custom properties of type d:text with list constraint 6591: Improvement for submit speed. 6592: Removed obsolete tests. 6594: Index tracking sample to include AVM index tracking 6595: Added the AVM helpers methods from the FreeMarker AVM API that were missing from the JavaScript API 6597: Rationalize post commit execution hooks for deployment receiver 6598: Properly escape path names for ProgramRunnable. 6599: AVM store name lookup cache is (theoretically) clusterable. 6600: Some or other gramatically incorrect stuff about Chiba. 6601: Fix for AR-1121 and AR-1673 6602: AR-1655: Versioning is not MLText aware 6603: Updated messages from lang packs 6604: Fixed AR-1476: JCR import end element escaping 6605: Updated Japanese lang messages git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@6746 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
589 lines
22 KiB
XML
589 lines
22 KiB
XML
<?xml version='1.0' encoding='UTF-8'?>
|
|
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
|
|
|
|
<!--
|
|
Configuration of in-transaction caches along with the shared (cross-transaction) caches.
|
|
The in-transaction caches do not share the same configuration as the shared caches.
|
|
This is because the shared caches can support replication (EHCache 1.2), while the
|
|
in-transaction caches must not use these features.
|
|
-->
|
|
<beans>
|
|
|
|
<!-- ==================================================== -->
|
|
<!-- EH Cache Manager to produce in-transaction EH Caches -->
|
|
<!-- Do not override or cluster -->
|
|
<!-- ==================================================== -->
|
|
|
|
<bean name="transactionalEHCacheManager" class="org.alfresco.repo.cache.EhCacheManagerFactoryBean" >
|
|
<property name="configLocation">
|
|
<value>classpath:alfresco/ehcache-transactional.xml</value>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- ============================================ -->
|
|
<!-- EH Cache Manager to produce shared EH Caches -->
|
|
<!-- ============================================ -->
|
|
|
|
<bean name="internalEHCacheManager" class="org.alfresco.repo.cache.InternalEhCacheManagerFactoryBean" />
|
|
|
|
|
|
<!-- ===================================== -->
|
|
<!-- Parent Associations lookup for nodes -->
|
|
<!-- ===================================== -->
|
|
|
|
<!-- The cross-transaction shared cache for Parent Associations -->
|
|
|
|
<bean name="parentAssocsSharedCache" class="org.alfresco.repo.cache.EhCacheAdapter">
|
|
<property name="cache">
|
|
<bean class="org.springframework.cache.ehcache.EhCacheFactoryBean" >
|
|
<property name="cacheManager">
|
|
<ref bean="internalEHCacheManager" />
|
|
</property>
|
|
<property name="cacheName">
|
|
<value>org.alfresco.cache.parentAssocsCache</value>
|
|
</property>
|
|
</bean>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- The transactional cache for Parent Associations -->
|
|
|
|
<bean name="parentAssocsCache" class="org.alfresco.repo.cache.TransactionalCache">
|
|
<property name="sharedCache">
|
|
<ref bean="parentAssocsSharedCache" />
|
|
</property>
|
|
<property name="cacheManager" >
|
|
<ref bean="transactionalEHCacheManager" />
|
|
</property>
|
|
<property name="name">
|
|
<value>org.alfresco.parentAssocsTransactionalCache</value>
|
|
</property>
|
|
<property name="maxCacheSize">
|
|
<value>1000</value>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- ===================================== -->
|
|
<!-- Authority container look up for users -->
|
|
<!-- ===================================== -->
|
|
|
|
<!-- The cross-transaction shared cache for User Authorities -->
|
|
|
|
<bean name="userToAuthoritySharedCache" class="org.alfresco.repo.cache.EhCacheAdapter">
|
|
<property name="cache">
|
|
<bean class="org.springframework.cache.ehcache.EhCacheFactoryBean" >
|
|
<property name="cacheManager">
|
|
<ref bean="internalEHCacheManager" />
|
|
</property>
|
|
<property name="cacheName">
|
|
<value>org.alfresco.cache.userToAuthorityCache</value>
|
|
</property>
|
|
</bean>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- The transactional cache for User Authorities -->
|
|
|
|
<bean name="userToAuthorityCache" class="org.alfresco.repo.cache.TransactionalCache">
|
|
<property name="sharedCache">
|
|
<ref bean="userToAuthoritySharedCache" />
|
|
</property>
|
|
<property name="cacheManager" >
|
|
<ref bean="transactionalEHCacheManager" />
|
|
</property>
|
|
<property name="name">
|
|
<value>org.alfresco.userToAuthorityTransactionalCache</value>
|
|
</property>
|
|
<property name="maxCacheSize">
|
|
<value>100</value>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- ===================================== -->
|
|
<!-- Permissions access cache -->
|
|
<!-- ===================================== -->
|
|
|
|
<!-- The cross-transaction shared cache for Permissions -->
|
|
|
|
<bean name="permissionsAccessSharedCache" class="org.alfresco.repo.cache.EhCacheAdapter">
|
|
<property name="cache">
|
|
<bean class="org.springframework.cache.ehcache.EhCacheFactoryBean" >
|
|
<property name="cacheManager">
|
|
<ref bean="internalEHCacheManager" />
|
|
</property>
|
|
<property name="cacheName">
|
|
<value>org.alfresco.cache.permissionsAccessCache</value>
|
|
</property>
|
|
</bean>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- The transactional cache for Permissions -->
|
|
|
|
<bean name="permissionsAccessCache" class="org.alfresco.repo.cache.TransactionalCache">
|
|
<property name="sharedCache">
|
|
<ref bean="permissionsAccessSharedCache" />
|
|
</property>
|
|
<property name="cacheManager" >
|
|
<ref bean="transactionalEHCacheManager" />
|
|
</property>
|
|
<!-- Eh cache area -->
|
|
<property name="name">
|
|
<value>org.alfresco.permissionsAccessTransactionalCache</value>
|
|
</property>
|
|
<property name="maxCacheSize">
|
|
<value>10000</value>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- ===================================== -->
|
|
<!-- Node owner cache -->
|
|
<!-- ===================================== -->
|
|
|
|
<!-- The cross-transaction shared cache for Node Ownership -->
|
|
|
|
<bean name="nodeOwnerSharedCache" class="org.alfresco.repo.cache.EhCacheAdapter">
|
|
<property name="cache">
|
|
<bean class="org.springframework.cache.ehcache.EhCacheFactoryBean" >
|
|
<property name="cacheManager">
|
|
<ref bean="internalEHCacheManager" />
|
|
</property>
|
|
<property name="cacheName">
|
|
<value>org.alfresco.cache.nodeOwnerCache</value>
|
|
</property>
|
|
</bean>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- The transactional cache for Node Ownership -->
|
|
|
|
<bean name="nodeOwnerCache" class="org.alfresco.repo.cache.TransactionalCache">
|
|
<property name="sharedCache">
|
|
<ref bean="nodeOwnerSharedCache" />
|
|
</property>
|
|
<property name="cacheManager" >
|
|
<ref bean="transactionalEHCacheManager" />
|
|
</property>
|
|
<property name="name">
|
|
<value>org.alfresco.nodeOwnerTransactionalCache</value>
|
|
</property>
|
|
<property name="maxCacheSize">
|
|
<value>10000</value>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- ===================================== -->
|
|
<!-- Person username to NodeRef cache -->
|
|
<!-- ===================================== -->
|
|
|
|
<!-- The cross-transaction shared cache for Person -->
|
|
|
|
<bean name="personSharedCache" class="org.alfresco.repo.cache.EhCacheAdapter">
|
|
<property name="cache">
|
|
<bean class="org.springframework.cache.ehcache.EhCacheFactoryBean" >
|
|
<property name="cacheManager">
|
|
<ref bean="internalEHCacheManager" />
|
|
</property>
|
|
<property name="cacheName">
|
|
<value>org.alfresco.cache.personCache</value>
|
|
</property>
|
|
</bean>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- The transactional cache for Person -->
|
|
|
|
<bean name="personCache" class="org.alfresco.repo.cache.TransactionalCache">
|
|
<property name="sharedCache">
|
|
<ref bean="personSharedCache" />
|
|
</property>
|
|
<property name="cacheManager" >
|
|
<ref bean="transactionalEHCacheManager" />
|
|
</property>
|
|
<!-- Eh cache area -->
|
|
<property name="name">
|
|
<value>org.alfresco.personTransactionalCache</value>
|
|
</property>
|
|
<property name="maxCacheSize">
|
|
<value>1000</value>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- ===================================== -->
|
|
<!-- Authentication Ticket Cache -->
|
|
<!-- ===================================== -->
|
|
|
|
<!-- The cross-transaction shared cache for In-Memory Tickets -->
|
|
|
|
<bean name="ticketsSharedCache" class="org.alfresco.repo.cache.EhCacheAdapter">
|
|
<property name="cache">
|
|
<bean class="org.springframework.cache.ehcache.EhCacheFactoryBean" >
|
|
<property name="cacheManager">
|
|
<ref bean="internalEHCacheManager" />
|
|
</property>
|
|
<property name="cacheName">
|
|
<value>org.alfresco.cache.ticketsCache</value>
|
|
</property>
|
|
</bean>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- The transactional cache for In-Memory Tickets -->
|
|
|
|
<bean name="ticketsCache" class="org.alfresco.repo.cache.TransactionalCache">
|
|
<property name="sharedCache">
|
|
<ref bean="ticketsSharedCache" />
|
|
</property>
|
|
<property name="cacheManager" >
|
|
<ref bean="transactionalEHCacheManager" />
|
|
</property>
|
|
<property name="name">
|
|
<value>org.alfresco.ticketsTransactionalCache</value>
|
|
</property>
|
|
<property name="maxCacheSize">
|
|
<value>10</value>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- ===================================== -->
|
|
<!-- AVM Lookup Cache -->
|
|
<!-- ===================================== -->
|
|
|
|
<!-- The cross-transaction shared cache for AVM lookups -->
|
|
|
|
<bean name="avmLookupSharedCache" class="org.alfresco.repo.cache.EhCacheAdapter">
|
|
<property name="cache">
|
|
<bean class="org.springframework.cache.ehcache.EhCacheFactoryBean">
|
|
<property name="cacheManager">
|
|
<ref bean="internalEHCacheManager"/>
|
|
</property>
|
|
<property name="cacheName">
|
|
<value>org.alfresco.repo.avm.lookupSharedCache</value>
|
|
</property>
|
|
</bean>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- Transactional cache for AVM lookups -->
|
|
|
|
<bean name="avmLookupCache" class="org.alfresco.repo.cache.TransactionalCache">
|
|
<property name="sharedCache">
|
|
<ref bean="avmLookupSharedCache"/>
|
|
</property>
|
|
<property name="cacheManager">
|
|
<ref bean="transactionalEHCacheManager"/>
|
|
</property>
|
|
<property name="name">
|
|
<value>org.alfresco.repo.avm.lookupTransactionalCache</value>
|
|
</property>
|
|
<property name="maxCacheSize">
|
|
<value>50</value>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- ===================================== -->
|
|
<!-- AVM Store lookup cache -->
|
|
<!-- ===================================== -->
|
|
|
|
<!-- The cross-transaction shared cache for AVM store lookups -->
|
|
|
|
<bean name="avmStoreLookupSharedCache" class="org.alfresco.repo.cache.EhCacheAdapter">
|
|
<property name="cache">
|
|
<bean class="org.springframework.cache.ehcache.EhCacheFactoryBean">
|
|
<property name="cacheManager">
|
|
<ref bean="internalEHCacheManager"/>
|
|
</property>
|
|
<property name="cacheName">
|
|
<value>org.alfresco.repo.avm.storeLookupSharedCache</value>
|
|
</property>
|
|
</bean>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- Transactional cache for AVM store lookups -->
|
|
|
|
<bean name="avmStoreLookupCache" class="org.alfresco.repo.cache.TransactionalCache">
|
|
<property name="sharedCache">
|
|
<ref bean="avmStoreLookupSharedCache"/>
|
|
</property>
|
|
<property name="cacheManager">
|
|
<ref bean="transactionalEHCacheManager"/>
|
|
</property>
|
|
<property name="name">
|
|
<value>org.alfresco.repo.avm.storeLookupTransactionalCache</value>
|
|
</property>
|
|
<property name="maxCacheSize">
|
|
<value>100</value>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- ===================================== -->
|
|
<!-- WebServices Query Session Cache -->
|
|
<!-- ===================================== -->
|
|
|
|
<!-- The cross-transaction shared cache for WebService query sessions -->
|
|
|
|
<bean name="webServicesQuerySessionSharedCache" class="org.alfresco.repo.cache.EhCacheAdapter">
|
|
<property name="cache">
|
|
<bean class="org.springframework.cache.ehcache.EhCacheFactoryBean">
|
|
<property name="cacheManager">
|
|
<ref bean="internalEHCacheManager"/>
|
|
</property>
|
|
<property name="cacheName">
|
|
<value>org.alfresco.repo.webservices.querySessionSharedCache</value>
|
|
</property>
|
|
</bean>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- Transactional cache for WebService query sessions -->
|
|
|
|
<bean name="webServicesQuerySessionCache" class="org.alfresco.repo.cache.TransactionalCache">
|
|
<property name="sharedCache">
|
|
<ref bean="webServicesQuerySessionSharedCache"/>
|
|
</property>
|
|
<property name="cacheManager">
|
|
<ref bean="transactionalEHCacheManager"/>
|
|
</property>
|
|
<property name="name">
|
|
<value>org.alfresco.repo.webservices.querySessionTransactionalCache</value>
|
|
</property>
|
|
<property name="maxCacheSize">
|
|
<value>50</value>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- ===================================== -->
|
|
<!-- Messages Caches -->
|
|
<!-- ===================================== -->
|
|
|
|
<!-- The cross-transaction shared cache for In-Memory ResourceBundleBaseNames -->
|
|
|
|
<bean name="resourceBundleBaseNamesSharedCache" class="org.alfresco.repo.cache.EhCacheAdapter">
|
|
<property name="cache">
|
|
<bean class="org.springframework.cache.ehcache.EhCacheFactoryBean" >
|
|
<property name="cacheManager">
|
|
<ref bean="internalEHCacheManager" />
|
|
</property>
|
|
<property name="cacheName">
|
|
<value>org.alfresco.cache.resourceBundleBaseNamesCache</value>
|
|
</property>
|
|
</bean>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- The transactional cache for In-Memory ResourceBundleBaseNames -->
|
|
|
|
<bean name="resourceBundleBaseNamesCache" class="org.alfresco.repo.cache.TransactionalCache">
|
|
<property name="sharedCache">
|
|
<ref bean="resourceBundleBaseNamesSharedCache" />
|
|
</property>
|
|
<property name="cacheManager" >
|
|
<ref bean="transactionalEHCacheManager" />
|
|
</property>
|
|
<property name="name">
|
|
<value>org.alfresco.resourceBundleBaseNamesTransactionalCache</value>
|
|
</property>
|
|
<property name="maxCacheSize">
|
|
<value>10</value>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- The cross-transaction shared cache for In-Memory LoadedResourceBundles -->
|
|
|
|
<bean name="loadedResourceBundlesSharedCache" class="org.alfresco.repo.cache.EhCacheAdapter">
|
|
<property name="cache">
|
|
<bean class="org.springframework.cache.ehcache.EhCacheFactoryBean" >
|
|
<property name="cacheManager">
|
|
<ref bean="internalEHCacheManager" />
|
|
</property>
|
|
<property name="cacheName">
|
|
<value>org.alfresco.cache.loadedResourceBundlesCache</value>
|
|
</property>
|
|
</bean>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- The transactional cache for In-Memory LoadedResourceBundles -->
|
|
|
|
<bean name="loadedResourceBundlesCache" class="org.alfresco.repo.cache.TransactionalCache">
|
|
<property name="sharedCache">
|
|
<ref bean="loadedResourceBundlesSharedCache" />
|
|
</property>
|
|
<property name="cacheManager" >
|
|
<ref bean="transactionalEHCacheManager" />
|
|
</property>
|
|
<property name="name">
|
|
<value>org.alfresco.loadedResourceBundlesTransactionalCache</value>
|
|
</property>
|
|
<property name="maxCacheSize">
|
|
<value>10</value>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- The cross-transaction shared cache for In-Memory Messages -->
|
|
|
|
<bean name="messagesSharedCache" class="org.alfresco.repo.cache.EhCacheAdapter">
|
|
<property name="cache">
|
|
<bean class="org.springframework.cache.ehcache.EhCacheFactoryBean" >
|
|
<property name="cacheManager">
|
|
<ref bean="internalEHCacheManager" />
|
|
</property>
|
|
<property name="cacheName">
|
|
<value>org.alfresco.cache.messagesCache</value>
|
|
</property>
|
|
</bean>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- The transactional cache for In-Memory Messages -->
|
|
|
|
<bean name="messagesCache" class="org.alfresco.repo.cache.TransactionalCache">
|
|
<property name="sharedCache">
|
|
<ref bean="messagesSharedCache" />
|
|
</property>
|
|
<property name="cacheManager" >
|
|
<ref bean="transactionalEHCacheManager" />
|
|
</property>
|
|
<property name="name">
|
|
<value>org.alfresco.messagesTransactionalCache</value>
|
|
</property>
|
|
<property name="maxCacheSize">
|
|
<value>10</value>
|
|
</property>
|
|
</bean>
|
|
|
|
|
|
<!-- ===================================== -->
|
|
<!-- Dictionary / Namespace Caches -->
|
|
<!-- ===================================== -->
|
|
|
|
<!-- The cross-transaction shared cache for In-Memory UriToModels -->
|
|
|
|
<bean name="uriToModelsSharedCache" class="org.alfresco.repo.cache.EhCacheAdapter">
|
|
<property name="cache">
|
|
<bean class="org.springframework.cache.ehcache.EhCacheFactoryBean" >
|
|
<property name="cacheManager">
|
|
<ref bean="internalEHCacheManager" />
|
|
</property>
|
|
<property name="cacheName">
|
|
<value>org.alfresco.cache.uriToModelsCache</value>
|
|
</property>
|
|
</bean>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- The transactional cache for In-Memory UriToModels -->
|
|
|
|
<bean name="uriToModelsCache" class="org.alfresco.repo.cache.TransactionalCache">
|
|
<property name="sharedCache">
|
|
<ref bean="uriToModelsSharedCache" />
|
|
</property>
|
|
<property name="cacheManager" >
|
|
<ref bean="transactionalEHCacheManager" />
|
|
</property>
|
|
<property name="name">
|
|
<value>org.alfresco.uriToModelsTransactionalCache</value>
|
|
</property>
|
|
<property name="maxCacheSize">
|
|
<value>10</value>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- The cross-transaction shared cache for In-Memory CompiledModels -->
|
|
|
|
<bean name="compiledModelsSharedCache" class="org.alfresco.repo.cache.EhCacheAdapter">
|
|
<property name="cache">
|
|
<bean class="org.springframework.cache.ehcache.EhCacheFactoryBean" >
|
|
<property name="cacheManager">
|
|
<ref bean="internalEHCacheManager" />
|
|
</property>
|
|
<property name="cacheName">
|
|
<value>org.alfresco.cache.compiledModelsCache</value>
|
|
</property>
|
|
</bean>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- The transactional cache for In-Memory CompiledModels -->
|
|
|
|
<bean name="compiledModelsCache" class="org.alfresco.repo.cache.TransactionalCache">
|
|
<property name="sharedCache">
|
|
<ref bean="compiledModelsSharedCache" />
|
|
</property>
|
|
<property name="cacheManager" >
|
|
<ref bean="transactionalEHCacheManager" />
|
|
</property>
|
|
<property name="name">
|
|
<value>org.alfresco.compiledModelsTransactionalCache</value>
|
|
</property>
|
|
<property name="maxCacheSize">
|
|
<value>10</value>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- The cross-transaction shared cache for In-Memory Namespace Uris -->
|
|
|
|
<bean name="urisSharedCache" class="org.alfresco.repo.cache.EhCacheAdapter">
|
|
<property name="cache">
|
|
<bean class="org.springframework.cache.ehcache.EhCacheFactoryBean" >
|
|
<property name="cacheManager">
|
|
<ref bean="internalEHCacheManager" />
|
|
</property>
|
|
<property name="cacheName">
|
|
<value>org.alfresco.cache.urisCache</value>
|
|
</property>
|
|
</bean>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- The transactional cache for In-Memory Namespace Uris -->
|
|
|
|
<bean name="urisCache" class="org.alfresco.repo.cache.TransactionalCache">
|
|
<property name="sharedCache">
|
|
<ref bean="urisSharedCache" />
|
|
</property>
|
|
<property name="cacheManager" >
|
|
<ref bean="transactionalEHCacheManager" />
|
|
</property>
|
|
<property name="name">
|
|
<value>org.alfresco.urisTransactionalCache</value>
|
|
</property>
|
|
<property name="maxCacheSize">
|
|
<value>10</value>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- The cross-transaction shared cache for In-Memory Namespace Prefixes -->
|
|
|
|
<bean name="prefixesSharedCache" class="org.alfresco.repo.cache.EhCacheAdapter">
|
|
<property name="cache">
|
|
<bean class="org.springframework.cache.ehcache.EhCacheFactoryBean" >
|
|
<property name="cacheManager">
|
|
<ref bean="internalEHCacheManager" />
|
|
</property>
|
|
<property name="cacheName">
|
|
<value>org.alfresco.cache.prefixesCache</value>
|
|
</property>
|
|
</bean>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- The transactional cache for In-Memory Namespace Prefixes -->
|
|
|
|
<bean name="prefixesCache" class="org.alfresco.repo.cache.TransactionalCache">
|
|
<property name="sharedCache">
|
|
<ref bean="prefixesSharedCache" />
|
|
</property>
|
|
<property name="cacheManager" >
|
|
<ref bean="transactionalEHCacheManager" />
|
|
</property>
|
|
<property name="name">
|
|
<value>org.alfresco.prefixesTransactionalCache</value>
|
|
</property>
|
|
<property name="maxCacheSize">
|
|
<value>10</value>
|
|
</property>
|
|
</bean>
|
|
|
|
</beans> |