Re: need information

Sylvain Becker <[email protected]>
Newsgroups gmane.comp.web.fastcgi.devel
Message-ID <[email protected]>
Hi Marc,

Thanks for you answer. I finally make it work.
I use C-cgi with apache server, and I was surprised how simple to move
to Fast-cgi.

An other, other question:
On www.fastcgi.com, there are several downloadable version of
mod_fastcgi for apache. (SNAP/ not not SNAP for instance), what are
the difference.

You said it was used on large website. Can you give some example. I
heard of amazon/ebay, is that true?

thanks you,
Sylvain

On 6/14/05, Marc Prewitt <[email protected]> wrote:
> 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
> 


-- 
Sylvain Becker
___________________________________
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.