http://qs1969.pair.com?node_id=1213677


in reply to Re^3: is Plack really necessary?
in thread is Plack really necessary?

so there's no need for low level uwsgi/psgi protocol use?

Replies are listed 'Best First'.
Re^5: is Plack really necessary?
by Your Mother (Archbishop) on Apr 27, 2018 at 16:23 UTC
      So with Starman involved, is this the correct diagram? Nginx <--> HTTP <--> Starman <--> Plackup/PSGI <--> Dancer <--> Code

        Yep. It's the layer called the application server. The main reason for this layer, as opposed to CGI which has no app server, is that the application is persistent as opposed to execute on demand. With a dynamic language like Perl, the benefits of persistence are enormous. Reduced a little–

        AppCode <-> AppServer <-> WebServer