[jboss-cvs] CacheBenchFwk/conf ...

Manik Surtani manik at jboss.org
Wed Apr 18 15:09:30 EDT 2007


  User: msurtani
  Date: 07/04/18 15:09:30

  Modified:    conf     cachebench.xml log4j.xml
  Log:
  Updated loads of stuff
  
  Revision  Changes    Path
  1.8       +4 -3      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.7
  retrieving revision 1.8
  diff -u -b -r1.7 -r1.8
  --- cachebench.xml	13 Mar 2007 14:56:56 -0000	1.7
  +++ cachebench.xml	18 Apr 2007 19:09:30 -0000	1.8
  @@ -6,8 +6,9 @@
   	gcBetweenTestsEnabled - if true, the framework pauses between each test and requests System.gc() - use this if you find yourself running out of mem!
   	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.  
  +	numThreads - the number of executor threads to use to perform the required number of operations.  
   -->
  -<cachebench sampleSize="100000" gcBetweenTestsEnabled="true" sleepBetweenTests="1000" emptyCacheBetweenTests="true">
  +<cachebench sampleSize="100000" gcBetweenTestsEnabled="true" sleepBetweenTests="1000" emptyCacheBetweenTests="true" numThreads="25">
   
   	<!-- Each testcase represents either a single configuration of a cacheing product.
   		  
  
  
  
  1.6       +5 -5      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.5
  retrieving revision 1.6
  diff -u -b -r1.5 -r1.6
  --- log4j.xml	13 Mar 2007 16:04:02 -0000	1.5
  +++ log4j.xml	18 Apr 2007 19:09:30 -0000	1.6
  @@ -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.5 2007/03/13 16:04:02 msurtani Exp $ -->
  +<!-- $Id: log4j.xml,v 1.6 2007/04/18 19:09:30 msurtani Exp $ -->
   <log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/">
       <!-- The list of appenders -->
       <!-- The rolling file appender -->
  @@ -20,7 +20,7 @@
   
       <!-- The console appender -->
       <appender name="CONSOLE" class="org.apache.log4j.ConsoleAppender">
  -        <param name="Threshold" value="INFO"/>
  +        <param name="Threshold" value="TRACE"/>
           <layout class="org.apache.log4j.PatternLayout">
               <param name="ConversionPattern" value="%d{ABSOLUTE} %-5p [%c{1}] %m%n"/>
           </layout>
  @@ -29,7 +29,7 @@
       <!-- The list of Categories-->
   
       <category name="org.cachebench.CacheBenchMarker" additivity="false">
  -        <priority value="INFO"/>
  +        <priority value="TRACE"/>
           <appender-ref ref="CONSOLE"/>
       </category>
   
  @@ -44,7 +44,7 @@
       </category>
   
       <category name="org.cachebench" additivity="false">
  -        <priority value="DEBUG"/>
  +        <priority value="TRACE"/>
           <appender-ref ref="ROLLING-FILE"/>
       </category>
   
  
  
  



More information about the jboss-cvs-commits mailing list