Template-Toolkit performance tuning

2001-12-30 Thread Ryan Thompson
Hello again, Thanks for all the good replies on the template issue. I had forgotten how much of a powder-keg that subject was... lucky nobody lit a match :-) Anyways, I've re-written one of my modules using TT to try it out, but I am less than satisfied with the performance... To the point

Re: Template-Toolkit performance tuning

2001-12-30 Thread Bill Moseley
At 05:17 PM 12/30/01 -0600, Ryan Thompson wrote: use Template; my %vars; $var{foo} = bar; # About 30 scalars like this . . my $tt = new Template({INTERPOLATE = 1}); Cache your template object between requests. -- Bill Moseley mailto:[EMAIL

Re: Template-Toolkit performance tuning

2001-12-30 Thread perrin
At Sun, 30 Dec 2001 16:39:47 -0800 , Bill Moseley [EMAIL PROTECTED] wrote: At 05:17 PM 12/30/01 -0600, Ryan Thompson wrote: use Template; my %vars; $var{foo} = bar; # About 30 scalars like this . . my $tt = new Template({INTERPOLATE = 1}); Cache your