[jboss-cvs] CacheBenchFwk/conf ...

Manik Surtani manik at jboss.org
Tue Mar 13 10:43:05 EDT 2007


  User: msurtani
  Date: 07/03/13 10:43:05

  Modified:    conf     cachebench.xml
  Log:
  Updated
  
  Revision  Changes    Path
  1.6       +36 -22    CacheBenchFwk/conf/cachebench.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: cachebench.xml
  ===================================================================
  RCS file: /cvsroot/jboss/CacheBenchFwk/conf/cachebench.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -b -r1.5 -r1.6
  --- cachebench.xml	9 Feb 2006 06:17:19 -0000	1.5
  +++ cachebench.xml	13 Mar 2007 14:43:05 -0000	1.6
  @@ -7,7 +7,7 @@
   	sleepBetweenTests - ms to sleep between tests.  useful to allow the JVM some time to do a gc
   	emptyCacheBetweenTests - again, use if you're running out of mem.  
   -->
  -<cachebench sampleSize="10000" gcBetweenTestsEnabled="true" sleepBetweenTests="1000" emptyCacheBetweenTests="true">
  +<cachebench sampleSize="100000" gcBetweenTestsEnabled="true" sleepBetweenTests="1000" emptyCacheBetweenTests="true">
   
   	<!-- Each testcase represents either a single configuration of a cacheing product.
   		  
  @@ -16,41 +16,54 @@
   		 See the javadoc for org.cachebench.CacheWrapper for the cacheWrapper property
   		 -->
   
  +
  +   <!-- note that if you are using REPLICATED tests, using the runSlave.sh script, it is best to run a single test at a time. -->
  +
       <!-- Note that weights are currently ignored. -->
       <testcase
  -		name="JBossCache-Standalone"
  +		name="JBossCache-Pessimistic-REPL_SYNC"
   		cacheWrapper="org.cachebench.cachewrappers.JBossCacheWrapper">
   		<test name="Strings" testClass="org.cachebench.tests.StringTest" weight="2.0" />
  +       <!--
   		<test name="Primitive Wrappers" testClass="org.cachebench.tests.PrimitiveTest" weight="1.0" />
   		<test name="Custom Class Types" testClass="org.cachebench.tests.CustomClassTest" weight="1.0" />
   		<test name="Custom Subclasses of Abstracts" testClass="org.cachebench.tests.SubclassTest" weight="1.5" />
   		<test name="Custom Types With Transients" testClass="org.cachebench.tests.TransientTest" weight="1.0" />
   		<test name="Custom Types With Statics" testClass="org.cachebench.tests.StaticsTest" weight="1.5" />
   		<test name="Custom Types With Associations" testClass="org.cachebench.tests.AssociationsTest" weight="2.0" />
  +		-->
   
   		<!-- arbitrary params may be passed into the cacheWrapper implementation, typically used to pass in config files for the cache product. -->
  -		<param name="config" value="jbosscache-config-standalone.xml" />
  +		<param name="config" value="pess-repl-sync.xml" />
   	</testcase>
   
  -
  -	<!--
  -	
  -		You can have multiple test cases in a single profile, so they are all tested concurrently
  -    -->
       <testcase
  -		name="WhirlyCache-Defaults"
  -		cacheWrapper="org.cachebench.cachewrappers.WhirlyCacheWrapper">
  +		name="JBossCache-Pessimistic-REPL_ASYNC"
  +		cacheWrapper="org.cachebench.cachewrappers.JBossCacheWrapper">
  +		<test name="Strings" testClass="org.cachebench.tests.StringTest" weight="2.0" />
  +		<param name="config" value="pess-repl-sync.xml" />
  +	</testcase>
   		
  +   <testcase
  +		name="JBossCache-Optimistic-REPL_SYNC"
  +		cacheWrapper="org.cachebench.cachewrappers.JBossCacheWrapper">
   		<test name="Strings" testClass="org.cachebench.tests.StringTest" weight="2.0" />
  -		<test name="Primitive Wrappers" testClass="org.cachebench.tests.PrimitiveTest" weight="1.0" />
  -		<test name="Custom Class Types" testClass="org.cachebench.tests.CustomClassTest" weight="1.0" />
  -		<test name="Custom Subclasses of Abstracts" testClass="org.cachebench.tests.SubclassTest" weight="1.5" />
  -		<test name="Custom Types With Transients" testClass="org.cachebench.tests.TransientTest" weight="1.0" />
  -		<test name="Custom Types With Statics" testClass="org.cachebench.tests.StaticsTest" weight="1.5" />
  -		<test name="Custom Types With Associations" testClass="org.cachebench.tests.AssociationsTest" weight="2.0" />
  +		<param name="config" value="pess-repl-sync.xml" />
  +	</testcase>
   
  +   <testcase
  +		name="JBossCache-Optimistic-REPL_ASYNC"
  +		cacheWrapper="org.cachebench.cachewrappers.JBossCacheWrapper">
  +		<test name="Strings" testClass="org.cachebench.tests.StringTest" weight="2.0" />
  +		<param name="config" value="pess-repl-sync.xml" />
   	</testcase>
   
  +
  +   <!--
  +	
  +		You can have multiple test cases in a single profile, so they are all tested concurrently
  +    -->
  +   <!--
   	<testcase
   		name="EHCache-Standalone" 
   		cacheWrapper="org.cachebench.cachewrappers.EHCacheWrapper">
  @@ -67,9 +80,10 @@
   		
   	</testcase>
   	
  +	-->
   <!--
       <testcase
  -        name="Tangosole"
  +        name="Tangosol"
           cacheWrapper="org.cachebench.cachewrappers.TangosolCacheWrapper">
   
           <test name="Strings" testClass="org.cachebench.tests.StringTest" weight="2.0" />
  @@ -88,7 +102,7 @@
   	<!-- Currently we only have a CSVReportGenerator.  See javadocs for org.cachebench.reportgenerators.ReportGenerator for writing your
   		own report generators such as XML generators, graphic generators, etc -->
   	<report 
  -		outputFile="E:/temp/performance.csv"
  +		outputFile="performance.csv"
   		generator="org.cachebench.reportgenerators.CSVReportGenerator" />
   		
   </cachebench>
  \ No newline at end of file
  
  
  



More information about the jboss-cvs-commits mailing list