[jboss-cvs] CacheBenchFwk/conf ...

Manik Surtani manik at jboss.org
Thu May 17 05:38:04 EDT 2007


  User: msurtani
  Date: 07/05/17 05:38:04

  Modified:    conf     cachebench.xml log4j.xml
  Log:
  fixed stuff
  
  Revision  Changes    Path
  1.11      +5 -5      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.10
  retrieving revision 1.11
  diff -u -b -r1.10 -r1.11
  --- cachebench.xml	17 May 2007 07:37:44 -0000	1.10
  +++ cachebench.xml	17 May 2007 09:38:04 -0000	1.11
  @@ -7,7 +7,7 @@
   	emptyCacheBetweenTests - again, use if you're running out of mem.
   	numThreads - the number of executor threads to use to perform the required number of operations.  
   -->
  -<cachebench sampleSize="100000" gcBetweenTestsEnabled="true" sleepBetweenTests="1000" emptyCacheBetweenTests="true" numThreads="25">
  +<cachebench sampleSize="10000" gcBetweenTestsEnabled="true" sleepBetweenTests="1000" emptyCacheBetweenTests="true" numThreads="25">
   
   	<!-- Each testcase represents either a single configuration or a cacheing product.
   		  
  @@ -20,9 +20,9 @@
         Note that if you are using REPLICATED tests, using the "ant runSlave" command, you can only run one test at a time.
         Otherwise, if you are using the test in standalone mode (testing a LOCAL cache), you can add multiple "testcase" elements.
      -->   
  -   <testcase name="JBossCache140-Pessimistic-REPL_SYNC" cacheWrapper="org.cachebench.cachewrappers.JBossCacheWrapper">
  +   <!--<testcase name="JBossCache140-Pessimistic-REPL_SYNC" cacheWrapper="org.cachebench.cachewrappers.JBossCacheWrapper">-->
       <!--<testcase name="JBossCache200-Pessimistic-REPL_SYNC" cacheWrapper="org.cachebench.cachewrappers.JBossCache200Wrapper">-->
  -    <!--<testcase name="EHCache124-replicated" cacheWrapper="org.cachebench.cachewrappers.EHCacheWrapper">-->
  +    <testcase name="EHCache124-replicated" cacheWrapper="org.cachebench.cachewrappers.EHCacheWrapper">
       <!--<testcase name="Terracotta230" cacheWrapper="org.cachebench.cachewrappers.TerracottaWrapper">-->
   
         <!--
  @@ -43,10 +43,10 @@
   
   		<!-- arbitrary params may be passed into the cacheWrapper implementation, typically used to pass in config files for the cache product. -->
         <!-- JBoss Cache 1.4.x and 2.x -->
  -      <param name="config" value="pess-repl-sync.xml" />
  +      <!--<param name="config" value="pess-repl-sync.xml" />-->
   
         <!-- EHCache -->
  -      <!--<param name="config" value="ehcache.xml" />-->
  +      <param name="config" value="ehcache-repl-sync.xml" />
   
         <!-- Terracotta -->
         <!--<param name="config" value="tc-config-pojo.xml" />-->
  
  
  
  1.9       +11 -6     CacheBenchFwk/conf/log4j.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: log4j.xml
  ===================================================================
  RCS file: /cvsroot/jboss/CacheBenchFwk/conf/log4j.xml,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -b -r1.8 -r1.9
  --- log4j.xml	17 May 2007 08:13:46 -0000	1.8
  +++ log4j.xml	17 May 2007 09:38:04 -0000	1.9
  @@ -1,11 +1,11 @@
   <?xml version="1.0" encoding="UTF-8"?>
   <!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
   <!-- The Log4j Configuration -->
  -<!-- $Id: log4j.xml,v 1.8 2007/05/17 08:13:46 msurtani Exp $ -->
  +<!-- $Id: log4j.xml,v 1.9 2007/05/17 09:38:04 msurtani Exp $ -->
   <log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/">
       <!-- The list of appenders -->
       <!-- The rolling file appender -->
  -    <appender name="ROLLING-FILE" class="org.apache.log4j.RollingFileAppender">
  +    <appender name="FILE" class="org.apache.log4j.RollingFileAppender">
           <param name="File" value="cachebench.log"/>
           <param name="Append" value="false"/>
           <param name="Threshold" value="DEBUG"/>
  @@ -35,17 +35,17 @@
   
       <category name="CacheException" additivity="false">
           <priority value="ERROR"/>
  -        <appender-ref ref="ROLLING-FILE"/>
  +        <appender-ref ref="FILE"/>
       </category>
   
       <category name="org.apache" additivity="false">
           <priority value="INFO"/>
  -        <appender-ref ref="ROLLING-FILE"/>
  +        <appender-ref ref="FILE"/>
       </category>
   
       <category name="org.cachebench" additivity="false">
           <priority value="TRACE"/>
  -        <appender-ref ref="ROLLING-FILE"/>
  +        <appender-ref ref="FILE"/>
       </category>
   
       <category name="org.cachebench.tests" additivity="false">
  @@ -53,10 +53,15 @@
           <appender-ref ref="CONSOLE"/>
       </category>
   
  +    <category name="net.sf.ehcache" additivity="false">
  +        <priority value="TRACE"/>
  +        <appender-ref ref="FILE"/>
  +    </category>
  +
       <!-- Here goes the root -->
       <root>
           <priority value ="ERROR" />
  -        <appender-ref ref="ROLLING-FILE" />
  +        <appender-ref ref="FILE" />
       </root>
   
   </log4j:configuration>
  
  
  



More information about the jboss-cvs-commits mailing list