First off I wasn't really suggesting that you use
<body bgcolor="<% $params{parse}->{BGCOLOR} %>">
The only difference between that and what your system currently uses is that you use a different syntax for tags. And there's nothing wrong with that. The above is just one way of using templates.

What I was suggesting, rather, is that your compilation phase could be turning this:

<body bgcolor="<@BGCOLOR@>">
into this:
$_out->('<body bgcolor="'); $_out->( $params{parse}->{BGCOLOR} ); $_out->('">');
This can be done by tokenizing your template, then turning everything like
<@ FOO @>
into a statement like
$_out->( $params{parse}->{FOO} );
This Perl statement can then be directly executed, and moreover you can write the Perl code to disk, then directly execute it again; this means that on subsequent requests to your template, it does not have to be reparsed.

As for whether this requires a major rewrite: it would require separating your compilation and execution phases, essentially. This is the biggest difference, because this is a mental difference: when you use the substitution operator to walk through a string and replace your template tags with other values, you are performing "compilation" and "execution" of your template at the same time. When you first compile to Perl code, then execute, you are splitting up those steps.

So it would require a rethink of a piece of your system, and yes, it would also require rewriting some of it. But it's something to think about.


In reply to Re: Re: Re: Re: Re: Speed, and my sanity. by btrott
in thread Speed, and my sanity. by Dylan

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.