Upload Code
loading-left
loading loading loading
loading-right

Loading

Profile
No self-introduction
codes (2)
IOCP server source code
no vote
Application background To help maintain the repeated use of the memory pool, remove the thread creation / termination burden, benefit management, distribution thread, control concurrency, minimize the thread context switch, optimize thread scheduling, improve the CPU and memory buffer hit rate. This resource is worth sharing. Key Technology   IOCP can efficiently notify the application of the I/O event. With the use of select () or other asynchronous methods, a socket [socket] is associated with a completion port, and then it can continue to carry out normal Winsock operation. However, when an event occurs, the completion port is added to a queue of the operating system. Then the application can query the core layer to get the completion port.IOCP development of source code software testing can be normal
sean3516
2016-08-23
0
1
The most complete IOCP programming examples
no vote
Application background The most complete IOCP programming examples from the control package, communication protocol, upload and download, SQL query to the log view, have a complete realization. The program structure is realized: the function of the program can be adjusted, the performance of the program, the switch of the protocol and the configuration of the log can be realized.. Key Technology Examples include the IOCP control package, server implementation, transport protocols and log, control, SQL query, upload, download and other protocols, and include some of the preliminary performance test results.Server:      & nbsp; & nbsp; & nbsp; & nbsp; to provide services and desktop mode operation, the desktop can directly open the program, daily debugging is convenient, can use command line registration or uninstall service. In the CMD in the input D:\DEMO\IOCPDemo\Bin\IOCPDemoSvr.exe  install to register service. In the CMD in
sean3516
2016-08-23
1
1
No more~