in reply to Calling a module's function to be run in background

I would think you either have to fork to new processes, or use threads. If you went with forks, you'd probably have to have some sort of inter-process communication (maybe one of the IPC modules). I don't know anything about threads, so I wouldn't know how to help you there. Just trying to give you a little direction, hope this helps.

    -Bryan

  • Comment on Re: Calling a module's function to be run in background