NAME

Bryar::Frontend::FastCGI - FastCGI interface to Bryar

SYNOPSIS

my $bryar = Bryar->new(frontend => 'Bryar::Frontend::FastCGI');
while (my $q = new CGI::Fast) {
    $bryar->config->frontend->fastcgi_request($q);
    eval { $bryar->go };
}

DESCRIPTION

This is a frontend to Bryar which is used when Bryar is being driven as a persistent CGI using a FastCGI-enabled web server.

METHODS

fastcgi_request

$frontend->fastcgi_request($q)

Used to pass the new CGI::Fast object inside the requests loop.

LICENSE

This module is free software, and may be distributed under the same terms as Perl itself.

AUTHOR

Copyright (C) 2003, Simon Cozens simon@kasei.com Copyright (C) 2008, Marco d'Itri md@Linux.IT