IOCP (I/O Completion Ports),中文名"输入输出完成端口"。
为什么要使用IOCP:
1,如果一个客户端对应开启一个线程,对于系统资源是一种浪费,同时也是一项挑战;
2,线程是内核对象,内核的资源是有限的,PC的最大线程数大概在2000左右,同时开启线程也需要额外的系统开销,时间和效率上不划算。
优点:
1,没有HANDLS数量限制,与WaitForMultipleObjects()的优势点;
2,基于线程池,准许一个线程暂停,由另一线程为其服务;
3,支持scalable架构。
主要的工作有三个:
1,关联一个SOCKET到IOCP
IOCP的创建函数有两个用途:
HANDLE CreateIoCompletionPort (
HANDLE FileHandle, // file handle to associate with // the I/O completion port
HANDLE ExistingCompletionPort, // handle to the I/O completion port
DWORD CompletionKey, // per-file completion key for I/O // completion packets
DWORD NumberOfConcurrentThreads // number of threads allowed to // execute concurrently);