in reply to Lowering memory usage in a perl server

Could you have one process that does non blocking I/O? The process will keep a list of open connections, and poll each one to see if data has come in. You must use non-blocking I/O and "select" to do this.
  • Comment on Re: Lowering memory usage in a perl server