Subject: | Support request streaming |
NaFastCGI supports streaming body content back to the client, but not
request body from it. This should be easy to add.
Consider something like:
Net::Async::FastCGI->new(
on_request_start => sub {
my ( $self, $req ) = @_;
return sub {
my ( $chunk ) = @_;
# $chunk is undef at stream EOF
...
}
},
);
--
Paul Evans