Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
由于一些“错误的文件名描述符”错误,在服务器代码的高负载期间,我需要使用poll()而不是select()在我的 .AsyncServer
poll()
select()
AsyncServer
这是我在 Linux 中提出的(满足我的需要):
asyncore.loop(use_poll=True)
在 Windows 环境中,poll()据我所知,没有,而是WSAPoll存在,但 Python 不支持。
WSAPoll
有什么方法可以poll()在 Windows 中使用吗?或者如何在windows环境下解决这个问题。