What is the best epoll/kqueue/select equvalient on Windows?

前端 未结 4 2021
不知归路
不知归路 2020-12-07 13:09

What is Windows\' best I/O event notification facility?

By best I mean something that ...

  1. doesn\'t have a limit on number of input file descriptors
4条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-07 13:14

    libuv

    libuv offers evented I/O for Unix and Windows and has support for socket, files and pipes. It is the platform layer of Node.js.

    More details are at: http://nikhilm.github.io/uvbook/introduction.html

提交回复
热议问题