python中socket编程中的多选择器

时间:2012-07-30 09:36:28

标签: python sockets

我是编程python的新手,我可以在编程套接字中使用多个secletor吗? 。如果可以,请举个例子。非常感谢大家!

1 个答案:

答案 0 :(得分:0)

有关具有非阻塞套接字的异步I / O的基础知识,请参阅official Python documentation

有关select模块及其select.select()函数的详细教程,请参阅PyMOTW

其他教程可以在IBM developerWorksBGU找到。

在Unix / Linux上,select.poll()select.epoll()在概念上与select.select()类似,但效率更高。