in reply to Re: Migrating from PHP to Perl for the web.
in thread Migrating from PHP to Perl for the web.
Mason can be quick if it uses mod_perl as pages are cached as compiled objects in memory. Mason offers a debugging mode that displays compile errors to the web.
There are programming purists who don't like Mason, but I've used it professionally and found it a good compromise between developing CGI applications quickly and good web performance.
Have a look at the brief Mason Introduction - it offers the following example of a Mason-interpreted file:
% my $noun = 'World'; Hello <% $noun %>! How are ya?
|
|---|