what is the best accelerator for Perl website?
feedback
|
closed as not a real question by Ward, Iain♦, Tom O'Connor, mailq, MDMarra Nov 17 '11 at 1:18
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.
|
I assume, since you just said "Perl" & didn't give any additional information, that you're running on some kind of Unix-like system. | |||
|
feedback
|
|
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. | |||
|
feedback
|
|
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? | |||
|
feedback
|