in reply to Using Mojolicious Non Blocking Page Fetch within Apache preforked mod_perl handlers

Usually Mojo is used as a persistent process listening on an internal port. Requests are handled via Apache using mod_proxy or some other intermediary (e.g., HAProxy, Varnish, or Nginx). I would not recommend this approach with mod_perl if you can help it.
  • Comment on Re: Using Mojolicious Non Blocking Page Fetch within Apache preforked mod_perl handlers

Replies are listed 'Best First'.
Re^2: Using Mojolicious Non Blocking Page Fetch within Apache preforked mod_perl handlers
by hgarg (Initiate) on Jun 05, 2014 at 11:37 UTC
    Yes that makes sense. Thanks.