Hello,

I create a new process after each form submission to parse some data:
subprocess.Popen(['python', parser_script], 
cwd=os.path.dirname(parser_script))
(The parser_script is independent of web2py)

This parsing can take days and multiple parsers need to be executed at once.
However if the web2py process is ended these child processes are also 
killed. 
How can I run these as independent orphan processes?

A Linux only solution is fine or cross platform if practical.

Richard

-- 



Reply via email to