From: Tom Allison Date: 2006-07-26T02:44:18+09:00 Subject: Re: FCGI: How do you use it? >the key is that fcgi hands you a cgi-like object and that object __is__ documented. this is "key". I now have some direction in which to go play. Thank you. Should I assume that fcgi.each do |request| returns something akin to perls http::request object (useble but clunkier) and fcgi.each_cgi do |cgi| returns a CGI object with is easier to code with. Since it loads CGI anyways, there really isn't any memory savings on either of these approaches, but little things can be handled with 'requests' probably faster than if they are treated as cgi objects. Thank you.