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