NAME
Mojo::Server::FastCGI - FastCGI Server
SYNOPSIS
use Mojo::Server::FastCGI;
my $fcgi = Mojo::Server::FastCGI->new;
$fcgi->run;
DESCRIPTION
Mojo::Server::FastCGI is a portable pure-Perl FastCGI implementation.
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;
read_record
my ($type, $id, $body) = $fcgi->read_record($c);
read_request
my $tx = $fcgi->read_request($c);
role_name
my $name = $fcgi->role_name(3);
role_number
my $number = $fcgi->role_number('FILTER');
run
$fcgi->run;
type_name
my $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);