Fastcgi or mod_ruby?

Hello!

Does anybody know whether mod_ruby or fastcgi is the superior way of
doing http based applications? I don’t need the eruby part of mod_ruby,
and at the moment I’m happy with fastcgi, but maybe it’s good to hear
some opinions…

thanks!
Dominik

Dominik Werder wrote:

Does anybody know whether mod_ruby or fastcgi is the superior way of
doing http based applications? I don’t need the eruby part of mod_ruby,
and at the moment I’m happy with fastcgi, but maybe it’s good to hear
some opinions…
Two comments and I am sure others will comment.

If your platform is at all efficient you can get along pretty good with
neither. I am running Apache on a Mac OS X dual 2.5 Tiger 10.4.5 and I
write all my CGI in Ruby. Never saw a slow down with using just pain
cgi-bin.

Getting FastCGI working on Apache is a chore.

john

The two are fairly different: mod_ruby gives you access to the full
Apache API including access control and output filtering, while FastCGI
(at least in the least-common-denominator form that Apache supports) is
basically just a means of avoiding the process forking and
initialization overhead of traditional CGI.

There are pros and cons to either solution. Because it gives you so
much power over the entire HTTP request handling process, mod_ruby can
let you do things that are more difficult with CGI, like request URL
rewriting. However, it ties you to Apache exclusively, while FastCGI
handlers can be run behind any number of HTTP servers, including the
increasingly-popular Lighttpd.

Personally, I’m moving towards using FastCGI behing Lighttpd for a
number of applications, primarily due to its built-in load balancing.
If you don’t need the kind of low-level power that mod_ruby offers, I’d
recommend staying with FastCGI for its simplicity and portability.

-rcoder