fastcgi++ 1.0 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News fastcgi++ 1.0 (Default branch)
# 1  
Old 09-06-2008
fastcgi++ 1.0 (Default branch)

fastcgi++ is a C++ library for developing Webapplications in C++ with the FastCGI protocol.This library does not support the old CGIprotocol. It effectively manages simultaneousrequests without the need for multiple threads.Session data is organized into meaningful datatypes as opposed to a series of text strings.Internationalization and Unicode support isanother priority.Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. AIX

FastCGI in AIX7.1

I am trying to use fcgi lib in aix7.1 version. when i trying to refer it gives me an munch:error ..Error reading input file.. Does anyboby has fcgi lib for aix7.1...plz suggest wait for the reply soon (0 Replies)
Discussion started by: greenworld123
0 Replies

2. Programming

issue with fastcgi program

Hello, I am strugglign with the following fastcgi C++ program with access to a postgresql database through the SOCI library. All the components work individually properlyy but the combination does not. The program compiles fine but the Apapche 2.2 error log files contains: FastCGI: comm... (0 Replies)
Discussion started by: JCR
0 Replies
Login or Register to Ask a Question
Mojo::Server::FastCGI(3pm)				User Contributed Perl Documentation				Mojo::Server::FastCGI(3pm)

NAME
Mojo::Server::FastCGI - FastCGI Server SYNOPSIS
use Mojo::Server::FastCGI; my $fcgi = Mojo::Server::FastCGI->new; $fcgi->on_request(sub { my ($self, $tx) = @_; # Request my $method = $tx->req->method; my $path = $tx->req->url->path; # Response $tx->res->code(200); $tx->res->headers->content_type('text/plain'); $tx->res->body("$method request for $path!"); # Resume transaction $tx->resume; }); $fcgi->run; DESCRIPTION
Mojo::Server::FastCGI is a portable pure-Perl FastCGI implementation as described in the "FastCGI Specification". See Mojolicious::Guides::Cookbook for deployment recipes. ATTRIBUTES
Mojo::Server::FastCGI inherits all attributes from Mojo::Server. METHODS
Mojo::Server::FastCGI inherits all methods from Mojo::Server and implements the following new ones. "accept_connection" my $c = $fcgi->accept_connection; Accept FastCGI connection. "read_record" my ($type, $id, $body) = $fcgi->read_record($c); Parse FastCGI record. "read_request" my $tx = $fcgi->read_request($c); Parse FastCGI request. "role_name" my $name = $fcgi->role_name(3); FastCGI role name. "role_number" my $number = $fcgi->role_number('FILTER'); FastCGI role number. "run" $fcgi->run; Start FastCGI. "type_name" my $name = $fcgi->type_name(5); FastCGI type name. "type_number" my $number = $fcgi->type_number('STDIN'); FastCGI type number. "write_records" $fcgi->write_record($c, 'STDOUT', $id, 'HTTP/1.1 200 OK'); Write FastCGI record. "write_response" $fcgi->write_response($tx); Write FastCGI response. DEBUGGING
You can set the "MOJO_FASTCGI_DEBUG" environment variable to get some advanced diagnostics information sent to the Mojo logger as "debug" messages. MOJO_FASTCGI_DEBUG=1 SEE ALSO
Mojolicious, Mojolicious::Guides, <http://mojolicio.us>. perl v5.12.4 2011-11-02 Mojo::Server::FastCGI(3pm)