On Thu, 7 Nov 2002, Stephen Clouse wrote: > The second problem is the loading time. This one directive (to load up our > application module): > > PerlModule IQGroup::IQCoordinator > > increases the server's startup time from roughly 3 seconds to 45 seconds.
likely due to the perl_clone() that happens PerlInterpStart times at startup with threaded MPMs. the more code loaded at startup, the longer it'll take to clone. and of course longer the higher PerlInterpStart is set to. since the syntax tree will be shared between clones, tradeoff should be worth it. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
