I/O multiplexing: select, poll and epoll in Linux
I/O multiplexing is doing I/O with many sources and giving good response. I/O multiplexing is explained with select, poll and epoll calls.
1 Comment
July 25, 2020
I/O multiplexing is doing I/O with many sources and giving good response. I/O multiplexing is explained with select, poll and epoll calls.
The select system call helps a server monitor sockets of multiple clients for readiness of I/O operations. The select call is explained.