From: Vance K. <va...@us...> - 2006-03-20 08:46:08
|
User: vancek Date: 06/03/20 00:46:07 Modified: andromda-ejb3/src/main/resources/META-INF/andromda namespace.xml Log: renamed hibernateEnableQueryCache to hibernateUseQueryCache property. defined useDefaultCacheRegion property. set the hibernateEntityCache and hibernateAssociationCache default value to TRANSACTIONAL. Revision Changes Path 1.19 +15 -3 cartridges/andromda-ejb3/src/main/resources/META-INF/andromda/namespace.xml Index: namespace.xml =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/main/resources/META-INF/andromda/namespace.xml,v retrieving revision 1.18 retrieving revision 1.19 diff -u -w -r1.18 -r1.19 --- namespace.xml 14 Mar 2006 06:18:51 -0000 1.18 +++ namespace.xml 20 Mar 2006 08:46:07 -0000 1.19 @@ -222,7 +222,7 @@ should also be enabled when specifying this property. </documentation> </property> - <property name="hibernateEnableQueryCache"> + <property name="hibernateUseQueryCache"> <default>false</default> <documentation> Enable/disable Hibernate's query cache @@ -231,8 +231,20 @@ should also be enabled when specifying this property. </documentation> </property> + <property name="useDefaultCacheRegion"> + <default>false</default> + <documentation> + Set to true if you do NOT wish to separate the + entity and query cache regions. That way, all + entities and queries use the default cache + region. + Set to false and the cartridge will create a + new cache region for all entities and all + queries marked as cacheable. + </documentation> + </property> <property name="hibernateEntityCache"> - <default>READ_WRITE</default> + <default>TRANSACTIONAL</default> <documentation> Defines the default strategy for Entities caching. Can be overwritten using the corresponding @@ -248,7 +260,7 @@ </documentation> </property> <property name="hibernateAssociationCache"> - <default>READ_WRITE</default> + <default>TRANSACTIONAL</default> <documentation> Defines the default strategy for associations between Entities caching. Can be overwrited with the corresponding |