异步通讯

epoll的作用

监听io流的变化,返回事件。

epoll 操作

  1. 创建: epoll_create
  2. 注册: epoll_ctl
  3. 获取通知事件: epoll_wait

golang的服务器库

支持异步通讯;

select的使用介绍
epoll相关的概念介绍
epoll的使用
select与epoll的使用
select与epoll的简单对比
select与epoll的详细对比

你可能感兴趣的:(异步通讯)