
Mojo::Server::FastCGI - FastCGI Server

use Mojo::Server::FastCGI;
my $fcgi = Mojo::Server::FastCGI->new;
$fcgi->run;

Mojo::Server::FastCGI is a portable pure-Perl FastCGI implementation.

Mojo::Server::FastCGI inherits all attributes from Mojo::Server.

Mojo::Server::FastCGI inherits all methods from Mojo::Server and implements the following new ones.
accept_connectionmy $c = $fcgi->accept_connection;
read_recordmy ($type, $id, $body) = $fcgi->read_record($c);
read_requestmy $tx = $fcgi->read_request($c);
role_namemy $name = $fcgi->role_name(3);
role_number my $number = $fcgi->role_number('FILTER');
run$fcgi->run;
type_namemy $name = $fcgi->type_name(5);
type_number my $number = $fcgi->type_number('STDIN');
write_records$fcgi->write_record($c, 'STDOUT', $id, 'HTTP/1.1 200 OK');
write_response$fcgi->write_response($tx);