Epollbased
Epollbased is a term that generally refers to systems, applications, or programming techniques that leverage the epoll mechanism provided by the Linux kernel for efficient I/O event notification. Epoll is a scalable I/O event multiplexing mechanism that allows a single process to monitor multiple file descriptors (such as network sockets or files) for I/O events like readability, writability, or error conditions. Instead of constantly polling each file descriptor, epoll provides a way to be notified only when an event occurs on one of the monitored descriptors.
Systems described as "epollbased" typically employ this mechanism to handle a large number of concurrent connections
The core of an epollbased system involves the use of the epoll_create, epoll_ctl, and epoll_wait system calls.