[jboss-cvs] CacheBenchFwk/conf ...

Manik Surtani manik at jboss.org
Fri May 18 10:32:09 EDT 2007


  User: msurtani
  Date: 07/05/18 10:32:09

  Modified:    conf     cachebench.xml log4j.xml
  Log:
  fixed stuff
  
  Revision  Changes    Path
  1.12      +5 -2      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.11
  retrieving revision 1.12
  diff -u -b -r1.11 -r1.12
  --- cachebench.xml	17 May 2007 09:38:04 -0000	1.11
  +++ cachebench.xml	18 May 2007 14:32:09 -0000	1.12
  @@ -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="10000" gcBetweenTestsEnabled="true" sleepBetweenTests="1000" emptyCacheBetweenTests="true" numThreads="25">
  +<cachebench sampleSize="100000" gcBetweenTestsEnabled="true" sleepBetweenTests="1000" emptyCacheBetweenTests="true" numThreads="25">
   
   	<!-- Each testcase represents either a single configuration or a cacheing product.
   		  
  @@ -20,6 +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.
      -->   
  +
  +   <!-- Make SURE you read the docs - especially when using Terracotta as this involves some additional setup -->
  +
      <!--<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">
  
  
  
  1.10      +19 -10    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.9
  retrieving revision 1.10
  diff -u -b -r1.9 -r1.10
  --- log4j.xml	17 May 2007 09:38:04 -0000	1.9
  +++ log4j.xml	18 May 2007 14:32:09 -0000	1.10
  @@ -1,7 +1,7 @@
   <?xml version="1.0" encoding="UTF-8"?>
   <!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
   <!-- The Log4j Configuration -->
  -<!-- $Id: log4j.xml,v 1.9 2007/05/17 09:38:04 msurtani Exp $ -->
  +<!-- $Id: log4j.xml,v 1.10 2007/05/18 14:32:09 msurtani Exp $ -->
   <log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/">
       <!-- The list of appenders -->
       <!-- The rolling file appender -->
  @@ -27,24 +27,18 @@
       </appender>
   
       <!-- The list of Categories-->
  -
  -    <category name="org.cachebench.CacheBenchmarkRunner" additivity="false">
  -        <priority value="TRACE"/>
  -        <appender-ref ref="CONSOLE"/>
  -    </category>
  -
       <category name="CacheException" additivity="false">
           <priority value="ERROR"/>
           <appender-ref ref="FILE"/>
       </category>
   
       <category name="org.apache" additivity="false">
  -        <priority value="INFO"/>
  +        <priority value="ERROR"/>
           <appender-ref ref="FILE"/>
       </category>
   
       <category name="org.cachebench" additivity="false">
  -        <priority value="TRACE"/>
  +        <priority value="DEBUG"/>
           <appender-ref ref="FILE"/>
       </category>
   
  @@ -54,7 +48,22 @@
       </category>
   
       <category name="net.sf.ehcache" additivity="false">
  -        <priority value="TRACE"/>
  +        <priority value="DEBUG"/>
  +        <appender-ref ref="FILE"/>
  +    </category>
  +
  +   <category name="com.tc" additivity="false">
  +        <priority value="DEBUG"/>
  +        <appender-ref ref="FILE"/>
  +    </category>
  +
  +   <category name="org.tc" additivity="false">
  +        <priority value="DEBUG"/>
  +        <appender-ref ref="FILE"/>
  +    </category>
  +
  +   <category name="org.jboss" additivity="false">
  +        <priority value="ERROR"/>
           <appender-ref ref="FILE"/>
       </category>
   
  
  
  



More information about the jboss-cvs-commits mailing list