The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Plack::App::Message::Passing - Send a PSGI environment via Message::Passing

SYNOPSIS

    # Note that the -e has to all be on one line!
    plackup -E production -s Twiggy -MPlack::App::Message::Passing -e'Plack::App::Message::Passing->new(return_address => "tcp://127.0.0.1:5555", send_address => "tcp://127.0.0.1:5556")->to_app'

DESCRIPTION

A PSGI application which serializes the PSGI request as JSON, sends it via ZeroMQ.

Used with Plack::Handler::Message::Passing, which inflates a PSGI request from JSON, runs it against a real application, and returns the results.

SEE ALSO

Message::Passing::PSGI
Plack::Handler::Message::Passing

AUTHOR, COPYRIGHT AND LICENSE

See Message::Passing::PSGI