Re: need information

Marc Prewitt <[email protected]>
Newsgroups gmane.comp.web.fastcgi.devel
Organization DMJA, Inc
Message-ID <[email protected]>
Sylvain Becker wrote:
> Hi,
> 
> I have just registered to fastcgi mailing list so this is my first questions.
> 
> Can anyone tell me how mature fast-cgi is, and also if it has been
> used on any big website? is there any equivalent solution to fast cgi?

It's very mature and has been used on many large websites.  I currently
work at a very large investment firm which uses it on many internal
websites.

> 
> I'd like to know how tough is it to move from cgi, to fast cgi.

Depends on what your code looks like.  The biggest problem you have to
deal with is how your global variables get initialized.  The fewer you
have, the easier it is.  If you're using perl with CGI.pm it can be as
easy as this:

# cgi way:
use CGI;
my $cgi = new CGI;
...

# fastcgi way
use CGI::Fast;

while (my $cgi = new CGI::Fast) {
   ...
}


> 
> And also, I would be gratful is some could point me to a basic
> helloworld sample.

If you're using perl, there's a sample in the CGI::Fast documentation at:

http://search.cpan.org/~lds/CGI.pm-3.10/CGI/Fast.pm
___________________________________
fastcgi-developers mailing list
http://fastcgi.com/fastcgi-developers/
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.