
Catalyst::Engine::PSGI - PSGI engine for Catalyst

# app.psgi
use strict;
use MyApp;
MyApp->setup_engine('PSGI');
my $app = sub { MyApp->run(@_) };

Catalyst::Engine::PSGI is a Catalyst Engine that adapts Catalyst into the PSGI gateway protocol.

$c->res->write to do streamin write, this engine would buffer the ouput until your app finishes.
To do real streaming with this engine, you should implement an IO::Handle-like object that responds to getline method that returns chunk or undef when done, and set that object to $c->res->body.

Tatsuhiko Miyagawa <miyagawa@bulknews.net>
Most of the code is taken and modified from Catalyst::Engine::CGI.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

Catalyst::Engine PSGI Plack