Re: [Twisted-Python] spawnProcess - reapProcess not retrying on failures

2014-09-02 Thread Akira Li
n the future? -- Akira ___ Twisted-Python mailing list Twisted-Python@twistedmatrix.com http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python

Re: [Twisted-Python] Agent and "Cannot assign requested address"

2011-03-10 Thread akira
_port_range = 3276861000 net.ipv4.tcp_fin_timeout = 30 There could be ~900 connections per second that might be good enough. Reusing a local port via SO_REUSEADDR or better yet reusing a tcp connection via HTTP keep-alive aren't available with twisted as I understand it. -- akira __

Re: [Twisted-Python] Twisted and python threading

2010-03-19 Thread Akira
WhenRunning() could be used to spawn the thread. Then reactor.callFromThread() (from within the thread) could be used to run code that should run in the reactor's mainloop i.e., twisted related code. -- Akira. ___ Twisted-Python mailing list Twist