You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The advantages of the native epoll approach include: 1) it implements the edge-triggered model, which performs better than the level-triggered model of Java NIO epoll; and 2) the native epoll generates less garbage on the JVM heap, which reduces the GC pressure for the system.
Option : AUTO, NIO, EPOLL
AUTO(default) : If Epoll is available, choose Epoll, if not NIO
NIO : Use NioChannel (NioSocketChannel, NioServerSocketChannel)
EPOLL : Use EpollChannel (EpollSocketChannel, EpollServerSocketChannel)
If a problem occurs, set it to NIO
The text was updated successfully, but these errors were encountered:
Related commit : 66cf5de
https://engineering.linkedin.com/blog/2019/06/espresso-new-netty-framework
Option : AUTO, NIO, EPOLL
AUTO(default) : If Epoll is available, choose Epoll, if not NIO
NIO : Use NioChannel (NioSocketChannel, NioServerSocketChannel)
EPOLL : Use EpollChannel (EpollSocketChannel, EpollServerSocketChannel)
If a problem occurs, set it to NIO
The text was updated successfully, but these errors were encountered: