what is the best accelerator for Perl website?
Asked
Active
Viewed 463 times
-1
-
3Sorry, no answer for you until you start to participate in the site as something other than a leech. – Paul Tomblin Oct 28 '10 at 16:21
4 Answers
0
AFAIK Perl doesn't need much acceleration - internally it works very differently from Java or PHP.
But if you're invoking perl using CGI, then you've got a big overhead there which you need to address (use mod_perl or fastCGI) befoer the code gets to the Perl runtime binary.

symcbean
- 21,009
- 1
- 31
- 52
0
I guess the best acceleration for Perl website is using one of Perl frameworks to build one. You may want to see at Catalyst, Mojolicious or Dancer - they looks to be in top now and have good community support.
If your site still runs in CGI it's maybe time to rebuild it in modern (and much faster) way?

yko
- 101