mheily / libkqueue

kqueue(2) compatibility library
Other
235 stars 77 forks source link

Optionally use named pipes in Windows instead of sockets #147

Open NN--- opened 2 years ago

NN--- commented 2 years ago

Named pipes work better in Windows. Windows sockets consume much more resources compared to sockets in Linux.

select can be emulated using overlapped I/O https://docs.microsoft.com/en-us/windows/win32/ipc/named-pipe-server-using-overlapped-i-o?redirectedfrom=MSDN

arr2036 commented 2 years ago

Unless you develop the code yourself it's very unlikely this will be implemented in the near future.