[jbosscache-commits] JBoss Cache SVN: r6277 - core/trunk/src/main/resources.

jbosscache-commits at lists.jboss.org jbosscache-commits at lists.jboss.org
Tue Jul 15 12:20:07 EDT 2008


Author: mircea.markus
Date: 2008-07-15 12:20:06 -0400 (Tue, 15 Jul 2008)
New Revision: 6277

Removed:
   core/trunk/src/main/resources/all-elements-file-3.x.xml
Log:
droped file as it is not needed anymore

Deleted: core/trunk/src/main/resources/all-elements-file-3.x.xml
===================================================================
--- core/trunk/src/main/resources/all-elements-file-3.x.xml	2008-07-15 16:00:49 UTC (rev 6276)
+++ core/trunk/src/main/resources/all-elements-file-3.x.xml	2008-07-15 16:20:06 UTC (rev 6277)
@@ -1,115 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<jbosscache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-            xsi:noNamespaceSchemaLocation="jbosscache-config-3.0.xsd">
-
-   <locking isolationLevel="REPEATABLE_READ" lockParentForChildInsertRemove="true" lockAcquisitionTimeout="10234"
-            nodeLockingScheme="mvcc" allowWriteSkew="true" concurrencyLevel="21"/>
-
-   <transaction transactionManagerLookupClass="org.jboss.cache.transaction.GenericTransactionManagerLookup"
-                syncRollbackPhase="true" syncCommitPhase="true"/>
-
-   <!-- serialization related configuration, used for replication and cache loading -->
-   <serialization objectInputStreamPoolSize="10" objectOutputStreamPoolSize="20" version="5.1.0"
-                  marshallerClass="some.Clazz" useLazyDeserialization="true" useRegionBasedMarshalling="false"/>
-
-   <!-- local mode is achieved by not specifying replication or invalidation -->
-   <!-- either replication or invalidation tags will be present, not both -->
-   <replication>
-      <sync replTimeout="15421"/>
-      <buddy enabled="true" poolName="myBuddyPoolReplicationGroup" communicationTimeout="2000">
-         <dataGravitation auto="true" removeOnFind="true" searchBackupTrees="true"/>
-         <locator class="org.jboss.cache.buddyreplication.NextMemberBuddyLocator">
-            <properties>
-               numBuddies = 1
-               ignoreColocatedBuddies = true
-            </properties>
-         </locator>
-      </buddy>
-   </replication>
-
-   <!-- either replication or invalidation tags will be present, not both -->
-   <invalidation>
-      <async useReplQueue="false" replQueueInterval="12" replQueueMaxElements="12345"/>
-   </invalidation>
-
-   <stateRetrieval timeout="1524" fetchInMemoryState="true"/>
-   <startup regionsInactiveOnStartup="true"/>
-   <shutdown hookBehavior="REGISTER"/>
-
-   <jmxStatistics enabled="false"/>
-
-   <transport clusterName="JBossCache-Cluster" multiplexerStack="file_name">
-      <jgroupsConfig>
-         <PING timeout="2000" num_initial_members="3"/>
-         <MERGE2 max_interval="30000" min_interval="10000"/>
-         <FD_SOCK/>
-         <FD timeout="10000" max_tries="5" shun="true"/>
-         <VERIFY_SUSPECT timeout="1500"/>
-         <pbcast.NAKACK use_mcast_xmit="false" gc_lag="0"
-                        retransmit_timeout="300,600,1200,2400,4800"
-                        discard_delivered_msgs="true"/>
-         <UNICAST timeout="300,600,1200,2400,3600"/>
-         <pbcast.STABLE stability_delay="1000" desired_avg_gossip="50000"
-                        max_bytes="400000"/>
-         <pbcast.GMS print_local_addr="true" join_timeout="5000" shun="false"
-                     view_bundling="true" view_ack_collection_timeout="5000"/>
-         <FRAG2 frag_size="60000"/>
-         <pbcast.STREAMING_STATE_TRANSFER use_reading_thread="true"/>
-         <pbcast.FLUSH timeout="0"/>
-      </jgroupsConfig>
-   </transport>
-
-   <eviction wakeUpInterval="5" defaultPolicyClass="org.jboss.cache.eviction.LRUPolicy" defaultEventQueueSize="200000">
-      <default>
-         <attribute name="maxNodes">5000</attribute>
-         <attribute name="timeToLive">1000</attribute>
-         <attribute name="timeToLive">1000</attribute>
-      </default>
-      <region name="/org/jboss/data">
-         <attribute name="timeToLive">1002</attribute>
-      </region>
-      <region name="/org/jboss/xyz" policyClass="org.jboss.cache.eviction.MRUPolicy" eventQueueSize="21">
-         <attribute name="maxNodes">2103</attribute>
-         <attribute name="minTimeToLive">22</attribute>
-      </region>
-   </eviction>
-
-   <loaders passivation="false" shared="false">
-      <preload>
-         <node fqn="/a/b/c"/>
-         <node fqn="/f/r/s"/>
-      </preload>
-
-      <!-- we can now have multiple cache loaders, which get chained -->
-      <loader class="org.jboss.cache.loader.JDBCCacheLoader" async="true" fetchPersistentState="true"
-              ignoreModifications="true" purgeOnStartup="true">
-         <properties>
-            cache.jdbc.table.name=jbosscache
-            cache.jdbc.table.create=true
-            cache.jdbc.table.drop=true
-         </properties>
-         <singletonStore enabled="false" class="org.jboss.cache.loader.SingletonStoreCacheLoader">
-            <properties>
-               pushStateWhenCoordinator=true
-               pushStateWhenCoordinatorTimeout=20000
-            </properties>
-         </singletonStore>
-      </loader>
-   </loaders>
-
-   <!-- this is new behavior added within 3.x only. it support configuring custom interceptors through configurations -->
-   <customInterceptors>
-      <interceptor position="first" class="org.jboss.cache.config.parsing.custominterceptors.AaaCustomInterceptor">
-         <attribute name="attrOne">value1</attribute>
-         <attribute name="attrTwo">value2</attribute>
-         <attribute name="attrThree">value3</attribute>
-      </interceptor>
-      <interceptor position="last" class="org.jboss.cache.config.parsing.custominterceptors.BbbCustomInterceptor"/>
-      <interceptor index="3" class="org.jboss.cache.config.parsing.custominterceptors.AaaCustomInterceptor"/>
-      <interceptor before="org.jboss.cache.interceptors.CallInterceptor"
-                   class="org.jboss.cache.config.parsing.custominterceptors.BbbCustomInterceptor"/>
-      <interceptor after="org.jboss.cache.interceptors.CallInterceptor"
-                   class="org.jboss.cache.config.parsing.custominterceptors.AaaCustomInterceptor"/>
-   </customInterceptors>
-</jbosscache>




More information about the jbosscache-commits mailing list