Skip Menu |

This queue is for tickets about the Net-Async-FastCGI CPAN distribution.

Report information
The Basics
Id: 77239
Status: new
Priority: 0/
Queue: Net-Async-FastCGI

People
Owner: Nobody in particular
Requestors: leonerd-cpan [...] leonerd.org.uk
Cc:
AdminCc:

Bug Information
Severity: Wishlist
Broken in: (no value)
Fixed in: (no value)



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