in reply to Re: XSLT vs Templating, Part 2
in thread XSLT vs Templating, Part 2
You can make things faster by simply changing your generator to:
Which seems to work (even without updating XML::Generator::DBI). Then you have to add ->toString to your calls for the TT level stuff. It makes all three faster - by about 40%.my $generator = XML::Generator::DBI->new( Handler => XML::LibXML::SAX::Builder->new(), dbh => $dbh, RowElement => "monk" );
|
---|