python - performance issue when import reactor module before os.fork() -
I found a display problem while trying to:
twisted.internet import # Some code from reactor here pid = os.fork () if not pid: # some code blahblahblah reactor.run ()
This is the reason for very low performance and I do not have useful informations from Found official document, I believe because I import the reactor module before any idea, OSFork ()?
You can not use subprocess instead of OSFork?
Comments
Post a Comment