http://www.perlmonks.org?node_id=561297


in reply to Re^2: Perl is dying
in thread Perl is dying

Uh, Ruby on Rails runs on FastCGI.

Replies are listed 'Best First'.
Re^4: Perl is dying
by astroboy (Chaplain) on Jul 14, 2006 at 19:25 UTC
    Which is, ironically, why I use FastCGI. mod_perl is too heavy for my needs (80% of my web requests don't require Perl in every HTTP process). I tried PersistentPerl/SpeedyCGI, liked it, but found a couple of bugs and the maintainer seems to have disappeared. I thought FastCGI was pretty much dead, then discovered that it's what Rails uses. Since it seems to be getting a new audience, I figured that I wouldn't be left in the lurch like I was with PersistentPerl.
      Yeah, I don't recommend using mod_perl to serve static files on a site with much traffic. You should use a reverse proxy setup or similar for that, as described in the mod_perl docs, or use FastCGI. The nice thing about FastCGI's new popularity is it means ISPs are getting pressure to support it.
        You should use a reverse proxy setup or similar for that, as described in the mod_perl docs, or use FastCGI.
        Or both. There's a new kid on the web servers block, putting pressure onto Apache: Lighttpd AKA "Lighty". It doesn't have mod_perl, obviously (as mod_perl is Apache technology), but instead, it puts a heavy focus onto FastCGI and proxying.