-1

what is the best accelerator for Perl website?

voretaq7
  • 79,879
  • 17
  • 130
  • 214

4 Answers4

1

I assume, since you just said "Perl" & didn't give any additional information, that you're running on some kind of Unix-like system.
In that case my suggestion would be mod_perl (per the tag I added).

voretaq7
  • 79,879
  • 17
  • 130
  • 214
0

Perhaps mod_perl

RedGrittyBrick
  • 3,832
  • 1
  • 17
  • 23
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