in reply to Daemon Server and IPC worker children

I have used a POE server that runs on one machine that communicates with the web server via a CGI script that invokes a call to the POE via the POE::Component::IKC modules. The POE writes results to disk and then writes a reference in a database. Another POE server serves up the results though a JSON call.

In the server I end up using a version of POE::Component::Generic to handle multiple children

  • Comment on Re: Daemon Server and IPC worker children

Replies are listed 'Best First'.
Re^2: Daemon Server and IPC worker children
by josh803316 (Beadle) on Apr 20, 2009 at 20:58 UTC
    Are you using the POE::Filer::JSON module? I like the idea of being able to separate the POE server to another Linux box. Are you using apache and mod_perl or fast cgi to speed up the cgi calls to the POE server?