You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@turbine.apache.org by il...@apache.org on 2001/03/16 01:27:58 UTC

cvs commit: jakarta-turbine/conf TurbineResources.properties

ilkka       01/03/15 16:27:58

  Modified:    conf     TurbineResources.properties
  Log:
  RunDataService has been added to TurbineResources. I also reduced
  the default pool size to 128 as usually only a few objects of the same class
  is enough to serve parallel requests.
  
  Revision  Changes    Path
  1.70      +18 -3     jakarta-turbine/conf/TurbineResources.properties
  
  Index: TurbineResources.properties
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine/conf/TurbineResources.properties,v
  retrieving revision 1.69
  retrieving revision 1.70
  diff -u -r1.69 -r1.70
  --- TurbineResources.properties	2001/02/27 00:57:28	1.69
  +++ TurbineResources.properties	2001/03/16 00:27:56	1.70
  @@ -1,5 +1,5 @@
   # -------------------------------------------------------------------
  -# $Id: TurbineResources.properties,v 1.69 2001/02/27 00:57:28 sean Exp $
  +# $Id: TurbineResources.properties,v 1.70 2001/03/16 00:27:56 ilkka Exp $
   #
   # This is the configuration file for Turbine.
   #
  @@ -388,6 +388,7 @@
   
   services.TurbineResourceService.classname=org.apache.turbine.services.resources.TurbineResourceService
   services.TurbineLoggingService.classname=org.apache.turbine.services.logging.TurbineLoggingService
  +services.TurbineRunDataService.classname=org.apache.turbine.services.rundata.TurbineRunDataService
   services.TurbineAssemblerBrokerService.classname=org.apache.turbine.services.assemblerbroker.TurbineAssemblerBrokerService
   services.TurbineLocalizationService.classname=org.apache.turbine.services.localization.TurbineLocalizationService
   services.TurbineGlobalCacheService.classname=org.apache.turbine.services.cache.TurbineGlobalCacheService
  @@ -408,6 +409,20 @@
   services.TurbineWebMacroService.classname=org.apache.turbine.services.webmacro.TurbineWebMacroService
   
   # -------------------------------------------------------------------
  +#
  +#  R U N   D A T A   S E R V I C E
  +#
  +# -------------------------------------------------------------------
  +# Default implementations of base interfaces for request processing.
  +# Additional configurations can be defined by using other keys
  +# in the place of the <default> key.  
  +# -------------------------------------------------------------------
  +
  +services.TurbineRunDataService.default.run.data=org.apache.turbine.services.rundata.DefaultTurbineRunData
  +services.TurbineRunDataService.default.parameter.parser=org.apache.turbine.util.parser.DefaultParameterParser
  +services.TurbineRunDataService.default.cookie.parser=org.apache.turbine.util.parser.DefaultCookieParser
  +
  +# -------------------------------------------------------------------
   # 
   #  A S S E M B L E R  B R O K E R  S E R V I C E
   #
  @@ -772,8 +787,8 @@
   
   # Size of the Object pooling service
   #
  -# Default: 1024
  -services.TurbinePoolService.pool.capacity = 1024
  +# Default: 128
  +services.TurbinePoolService.pool.capacity = 128
   
   # -------------------------------------------------------------------
   # 
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: turbine-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: turbine-dev-help@jakarta.apache.org


TurbineResources.properties

Posted by Jon Stevens <jo...@latchkey.com>.
on 3/15/01 4:27 PM, "ilkka@apache.org" <il...@apache.org> wrote:

> ilkka       01/03/15 16:27:58
> 
> Modified:    conf     TurbineResources.properties
> Log:
> RunDataService has been added to TurbineResources. I also reduced
> the default pool size to 128 as usually only a few objects of the same class
> is enough to serve parallel requests.

Ilkka,

You shouldn't modify that file directly. Instead, you should modify the
conf/master/TurbineResources.master file. Then,

cd conf
./build-conf.sh[bat]

That will re-generate the TurbineResources.properties file.

thanks,

-jon


---------------------------------------------------------------------
To unsubscribe, e-mail: turbine-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: turbine-dev-help@jakarta.apache.org