remm        2004/10/20 05:28:06

  Modified:    util/java/org/apache/tomcat/util/buf StringCache.java
  Log:
  - Change the default value for the cache size, as there's no use keeping seldom used 
strings.
  
  Revision  Changes    Path
  1.3       +1 -1      
jakarta-tomcat-connectors/util/java/org/apache/tomcat/util/buf/StringCache.java
  
  Index: StringCache.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-connectors/util/java/org/apache/tomcat/util/buf/StringCache.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- StringCache.java  19 Oct 2004 09:28:58 -0000      1.2
  +++ StringCache.java  20 Oct 2004 12:28:06 -0000      1.3
  @@ -52,7 +52,7 @@
       
   
       protected static int cacheSize = 
  -        
Integer.parseInt(System.getProperty("tomcat.util.buf.StringCache.cacheSize", "1000"));
  +        
Integer.parseInt(System.getProperty("tomcat.util.buf.StringCache.cacheSize", "200"));
       
   
       /**
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to