On 7 Apr, 06:17 pm, matu...@yahoo.com wrote:
However I am using Linux. The Twisted documentation is recommending
that it may be better to use pollreactor
I would be actually quite curious to know the rationale of choosing
select()
over epoll() these days.
epoll() scales like O(1) with the number of file descriptors, it is
very
performant, stable, and has no limitation on the overall number of fds
on
linux (except for your /proc and ulimit -n settings). I'd use epoll
reactor,
unless you have some very specialized requirement.
Short answer: because select() is always available.
Longer answer: Looks like maybe you want to contribute a patch for this
ticket :)
http://twistedmatrix.com/trac/ticket/2234
_______________________________________________
Twisted-Python mailing list
Twisted-Python@twistedmatrix.com
http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python