http://www.perlmonks.org?node_id=918811


in reply to Dealing with multiple processes?

I think you need general dispatcher and spawned handlers for a particular call.

In main loop, receive packet, if it is a new call, spawn a handler, register it (make a link between call and handler) and give him this packet. If it is a packet for registered call, give it to particular handler. Otherwise just drop it.

Handlers will decode packets in context of current session; if session ends, handler exits.

Replies are listed 'Best First'.
Re^2: Dealing with multiple processes?
by bigmoose (Acolyte) on Aug 05, 2011 at 15:53 UTC

    Ahaha!

    handlers are the concept I was looking for.. I think

    Thanks wise one ^_^