From: Andreas Schwarz Date: 2004-03-01T22:29:45+09:00 Subject: Why ist fastcgi so slow? Hi, I am using mod_fastcgi and ruby 1.8 with the following example script: #!/usr/local/bin/ruby require 'cgi' require 'fcgi' FCGI.each_cgi do |cgi| cgi.out{ "Test" } end This is extremely slow, I get exactly 1.00 requests per second (measured with ApacheBench). But why? Andreas