标签:epo mon head spec 操作 linu ber 机制 dir
在开始正文前,先来看几个概念
Java 中 NIO 和传统 IO 的区别:
io | nio |
---|---|
面向Stream | 面向Buffer |
阻塞 IO | 非阻塞,多路复用 |
非阻塞 IO 中需要用户线程在每个IO通路上,各自不断轮询IO状态,来判断是否有可处理的数据。如果把一个连接的可读可写事件剥离出来,使用单独的线程来对其进行管理。多个IO通路都复用这个管理器来管理socket状态,这个叫I/O多路复用。
下面是 Linux man 手册上对 select 的描述。
NAME
select, pselect, FD_CLR, FD_ISSET,FD_SET,
FD_ZERO - synchronous I/O multiplexing
DESCRIPTION
select() allows a program to monitor multiple file descriptors,
waiting until one or more of the file descriptors become "ready" for
some class of I/O operation (e.g., input possible). A file
descriptor is considered ready if it is possible to perform a
corresponding I/O operation (e.g., read(2), or a sufficiently small
write(2)) without blocking.
select() can monitor only file descriptors numbers that are less than
FD_SETSIZE; poll(2) and epoll(7) do not have this limitation. See
BUGS.
select 对监听的数量有限制
poll 与 select 没区别,采用了链表实现,没有数量限制。
select 和 poll 都是遍历文件描述符,epoll 是通过监听回调的机制处理。
Java NIO 由以下几个核心部分组成:
下面看下简单的概念,原理暂不展开。
定义参见下方截取的 Java 注释。比传统的 IO 抽象层次更高。
/**
* A nexus for I/O operations.
*
* <p> A channel represents an open connection to an entity such as a hardware
* device, a file, a network socket, or a program component that is capable of
* performing one or more distinct I/O operations, for example reading or
* writing.
*/
下面是 Java 类注释的部分描述。
/**
* A container for data of a specific primitive type.
*/
就是上文提到的“多路复用”。
标签:epo mon head spec 操作 linu ber 机制 dir
原文地址:https://www.cnblogs.com/walterlee/p/13074270.html