Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: Using Templates

by samtregar (Abbot)
on Oct 18, 2010 at 17:12 UTC ( [id://865991]=note: print w/replies, xml ) Need Help??


in reply to Using Templates

Virtually any templating system will be faster than that because it will compile the template once and use the compiled version to build the output in the loop. Here's how it would look if you used HTML::Template for example:

use HTML::Template; my $TEMPLATE = HTML::Template->new_file($path_to_template); open my $CSVIN, '<', $file; foreach (<$CSVIN>) { #split CSV into usable format #the real script has about ten variables (my $input1, $input2, $input3, $file_out) = split(/,/, $_); open my $FHOUT, '>', $file_out; $TEMPLATE->param({$var1 => $input1, $var2 => $input2, $var3 => $input3, # ... }); print $FHOUT $TEMPLATE->output(); close($FHOUT); } # end iteration through CSV

Faster, and less code too!

-sam

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://865991]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (6)
As of 2024-04-16 20:07 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found