摘要: Python——IO多路复用之select模块epoll方法 使用epoll方法实现IO多路复用,使用方法基本与poll方法一致,epoll效率要高于select和poll。 .├── epoll_client.py├── epoll_server.py└── settings.py 阅读全文
posted @ 2019-08-01 12:43 no樂on 阅读(387) 评论(0) 推荐(0) 编辑
摘要: Python——IO多路复用之select模块poll方法 使用poll方法实现IO多路复用 .├── poll_client.py├── poll_server.py└── settings.py 阅读全文
posted @ 2019-08-01 12:35 no樂on 阅读(492) 评论(0) 推荐(0) 编辑
摘要: Python——IO多路复用之select模块select方法 使用select模块的select方法实现Python——IO多路复用 实现同时将终端输入的文本以及客户端传输的文本写入文本文件中: write_file/├── client.py├── server.py├── settings.p 阅读全文
posted @ 2019-08-01 11:48 no樂on 阅读(321) 评论(0) 推荐(0) 编辑