Re: performance improvements for 1.3

John Williams <[email protected]>
Newsgroups gmane.comp.web.mason.devel
Message-ID <[email protected]>
Just out of curiosity, has anyone considered something like:

   push( @buffer, <expr> );
   push( @buffer, <expr> );
   push( @buffer, <expr> );

And then doing a big join when the buffer gets flushed?

(It might even make <% @list %> easier to support...)

~ John Williams


On Tue, 28 Sep 2004, Jonathan Swartz wrote:

> By in-line concatenation, I mean that a construction like
>
>     Hello, <% $name %>, how are you?
>
> gets converted to
>
>     $$_outbuf .= 'Hello, ';
>     $$_outbuf .= $name;
>     $$_outbuf .= ', how are you?'
>
> instead of the current
>
>     $m->print('Hello, ');
>     $m->print($name);
>     $m->print(', how are you?');
>
> where $m->print ultimately does the same concatenation.



-------------------------------------------------------
This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170
Project Admins to receive an Apple iPod Mini FREE for your judgement on
who ports your project to Linux PPC the best. Sponsored by IBM.
Deadline: Sept. 24. Go here: http://sf.net/ppc_contest.php
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.